diff options
author | typebrook <typebrook@gmail.com> | 2020-05-17 23:05:27 +0800 |
---|---|---|
committer | typebrook <typebrook@gmail.com> | 2020-05-17 23:05:27 +0800 |
commit | 2873211bfe764f30f422547485cdfb8600bd48a6 (patch) | |
tree | 5b3cc18265da68589272b65c6eb62f1efd27c21f | |
parent | b2a3ccd823e9b8c9844702a9b9b696978a89045d (diff) |
Suppress error after configurationv0.6
-rwxr-xr-x | gist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -871,7 +871,7 @@ case "$1" in | |||
871 | _clean_repos ;; | 871 | _clean_repos ;; |
872 | config | c) | 872 | config | c) |
873 | shift | 873 | shift |
874 | _configure "$@" && (_apply_config config && _check_protocol) ;; | 874 | _configure "$@" && { _apply_config config && _check_protocol &>/dev/null; } ;; |
875 | user | u) | 875 | user | u) |
876 | shift | 876 | shift |
877 | _query_user "$@" ;; | 877 | _query_user "$@" ;; |