Fix print statements in scripts/make-dev-virtualenv.sh script.
parent
744d5c64d3
commit
9f47765a3f
|
@ -36,8 +36,8 @@ test -r "$WRPR" && . $WRPR
|
||||||
okay=$?
|
okay=$?
|
||||||
|
|
||||||
if test "$okay" -eq 0 ; then
|
if test "$okay" -eq 0 ; then
|
||||||
printf "Using %s as WORKON_HOME for the new virtualenv...\n" "$PWD"
|
printf "Using %s as WORKON_HOME for the new virtualenv...\n" $PWD
|
||||||
printf"What should the name of the new virtualenv be? (default: '%s')\n" "$project"
|
printf "What should the name of the new virtualenv be? (default: '%s')\n" $project
|
||||||
read -p"Name for this virtualenv?: " name
|
read -p"Name for this virtualenv?: " name
|
||||||
if test -z "$name"; then
|
if test -z "$name"; then
|
||||||
name="$project"
|
name="$project"
|
||||||
|
|
Loading…
Reference in New Issue