From e2308174961b8ca985080e3bc6dde7ce5d4ed77e Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Wed, 2 Dec 2015 23:59:41 +0000 Subject: [PATCH] Restored `--no-error` for compatibility with v20151103 and earlier --- bin/pyenv-sh-activate | 4 ++++ bin/pyenv-sh-deactivate | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/bin/pyenv-sh-activate b/bin/pyenv-sh-activate index 3ceadb6..6966776 100755 --- a/bin/pyenv-sh-activate +++ b/bin/pyenv-sh-activate @@ -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 ;; diff --git a/bin/pyenv-sh-deactivate b/bin/pyenv-sh-deactivate index a6861c0..7638de9 100755 --- a/bin/pyenv-sh-deactivate +++ b/bin/pyenv-sh-deactivate @@ -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 ;;