Skip to content

Commit 9f5f932

Browse files
jasonamyersdhellmann
authored andcommitted
Merged in fix/space_in_mkvenv_project_path (pull request #50)
Fixes Issues #248
2 parents 62167c0 + 6559554 commit 9f5f932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

virtualenvwrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ function mkvirtualenv {
445445
-a)
446446
i=$(( $i + 1 ))
447447
project="${in_args[$i]}"
448-
if [ ! -d "$project" ]
448+
if [ ! -d "${project}" ]
449449
then
450450
echo "Cannot associate project with $project, it is not a directory" 1>&2
451451
return 1

0 commit comments

Comments
 (0)