We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185f5cf commit 5b35a17Copy full SHA for 5b35a17
1 file changed
virtualenvwrapper.sh
@@ -108,7 +108,7 @@ function virtualenvwrapper_derive_workon_home {
108
# - Removing extra slashes (e.g., when TMPDIR ends in a slash)
109
# - Expanding variables (e.g., $foo)
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)
+ workon_home_dir=$(virtualenvwrapper_expandpath "$workon_home_dir")
112
fi
113
114
echo "$workon_home_dir"
@@ -352,7 +352,7 @@ function mkvirtualenv {
352
-r)
353
i=$(( $i + 1 ));
354
requirements="${in_args[$i]}";
355
- requirements=$(virtualenvwrapper_expandpath $requirements);;
+ requirements=$(virtualenvwrapper_expandpath "$requirements");;
356
*)
357
if [ ${#out_args} -gt 0 ]
358
then
0 commit comments