File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ function virtualenvwrapper_derive_workon_home {
108
108
# - Removing extra slashes (e.g., when TMPDIR ends in a slash)
109
109
# - Expanding variables (e.g., $foo)
110
110
# - Converting ~s to complete paths (e.g., ~/ to /home/brian/ and ~arthur to /home/arthur)
111
- workon_home_dir=$( virtualenvwrapper_expandpath $workon_home_dir )
111
+ workon_home_dir=$( virtualenvwrapper_expandpath " $workon_home_dir " )
112
112
fi
113
113
114
114
echo " $workon_home_dir "
@@ -352,7 +352,7 @@ function mkvirtualenv {
352
352
-r)
353
353
i=$(( $i + 1 )) ;
354
354
requirements=" ${in_args[$i]} " ;
355
- requirements=$( virtualenvwrapper_expandpath $requirements ) ;;
355
+ requirements=$( virtualenvwrapper_expandpath " $requirements " ) ;;
356
356
* )
357
357
if [ ${# out_args} -gt 0 ]
358
358
then
You can’t perform that action at this time.
0 commit comments