mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2026-09-10 07:16:18 -04:00
Restored --no-error for compatibility with v20151103 and earlier
This commit is contained in:
parent
6e91d75069
commit
e230817496
|
|
@ -36,6 +36,10 @@ while [ $# -gt 0 ]; do
|
|||
"-f" | "--force" )
|
||||
FORCE=1
|
||||
;;
|
||||
"--no-error" )
|
||||
# for backward compatibility with v20151103 and earlier
|
||||
QUIET=1
|
||||
;;
|
||||
"-q" | "--quiet" )
|
||||
QUIET=1
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -18,6 +18,10 @@ while [ $# -gt 0 ]; do
|
|||
"-f" | "--force" )
|
||||
FORCE=1
|
||||
;;
|
||||
"--no-error" )
|
||||
# for backward compatibility with v20151103 and earlier
|
||||
QUIET=1
|
||||
;;
|
||||
"-q" | "--quiet")
|
||||
QUIET=1
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue