mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
letsencrypt-auto now knows about -vvvv
This commit is contained in:
parent
87000ac5c6
commit
ecd987b8ca
1 changed files with 2 additions and 1 deletions
|
|
@ -11,7 +11,8 @@ VENV_PATH=${VENV_PATH:-"$XDG_DATA_HOME/$VENV_NAME"}
|
|||
VENV_BIN=${VENV_PATH}/bin
|
||||
|
||||
for arg in "$@" ; do
|
||||
if [ "$arg" = "-v" ] || [ "$arg" = "--verbose" ] ; then
|
||||
# This first clause is redundant with the third, but hedging on portability
|
||||
if [ "$arg" = "-v" ] || [ "$arg" = "--verbose" ] || echo "$arg" | grep -E -- -v+ ; then
|
||||
VERBOSE=1
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in a new issue