From 08cfea259c699bbe590183e224016d7848f70e2e Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Sat, 7 May 2016 13:19:37 +0000 Subject: [PATCH] Remove backward compat `--no-error` option --- bin/pyenv-sh-activate | 4 ---- bin/pyenv-sh-deactivate | 4 ---- 2 files changed, 8 deletions(-) diff --git a/bin/pyenv-sh-activate b/bin/pyenv-sh-activate index d2f4081..fdb326b 100755 --- a/bin/pyenv-sh-activate +++ b/bin/pyenv-sh-activate @@ -35,10 +35,6 @@ 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 4321167..cceaa19 100755 --- a/bin/pyenv-sh-deactivate +++ b/bin/pyenv-sh-deactivate @@ -21,10 +21,6 @@ while [ $# -gt 0 ]; do "-f" | "--force" ) FORCE=1 ;; - "--no-error" ) - # for backward compatibility with v20151103 and earlier - QUIET=1 - ;; "-q" | "--quiet") QUIET=1 ;;