We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a933b98 commit 55f94ceCopy full SHA for 55f94ce
tests/test_allvirtualenv.sh
@@ -30,4 +30,8 @@ test_allvirtualenv_all() {
30
assertTrue "Did not find test2" "allvirtualenv pwd | grep -q 'test2$'"
31
}
32
33
+test_allvirtualenv_spaces() {
34
+ assertTrue "Command did not output The Zen of Python" "allvirtualenv python -c 'import this' | grep -q 'The Zen of Python'"
35
+}
36
+
37
. "$test_dir/shunit2"
virtualenvwrapper.sh
@@ -1168,7 +1168,7 @@ function allvirtualenv {
1168
# because we don't want to trigger any hooks.
1169
(source "$WORKON_HOME/$d/bin/activate";
1170
cd "$VIRTUAL_ENV";
1171
- $@)
+ "$@")
1172
echo
1173
done
1174
0 commit comments