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.
2 parents 41f3662 + 6206c03 commit 0d2ea2eCopy full SHA for 0d2ea2e
docs/en/history.rst
@@ -5,6 +5,9 @@ Release History
5
dev
6
7
- Fix problem with space in WORKON_HOME path (:bbissue:`79`).
8
+ - Fix problem with argument processing in lsvirtualenv under zsh
9
+ (:bbissue:`86`). Thanks to Nat Williams (:bbuser:`natw`) for the
10
+ bug report and patch.
11
12
2.6.3
13
virtualenvwrapper.sh
@@ -259,7 +259,8 @@ _lsvirtualenv_usage () {
259
#
260
# Usage: lsvirtualenv [-l]
261
lsvirtualenv () {
262
- typeset args="$(getopt blh "$@")"
+ typeset -a args
263
+ args=($(getopt blh "$@"))
264
if [ $? != 0 ]
265
then
266
_lsvirtualenv_usage
0 commit comments