mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 08:21:49 +00:00
avoid side effects in _printargs
A possible fix for https://github.com/Neilpang/acme.sh/issues/1356
This commit is contained in:
parent
a5a0e564dd
commit
52351d7dc8
3
acme.sh
3
acme.sh
@ -139,6 +139,7 @@ __red() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_printargs() {
|
_printargs() {
|
||||||
|
local _exitstatus="$?"
|
||||||
if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
|
if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
|
||||||
printf -- "%s" "[$(date)] "
|
printf -- "%s" "[$(date)] "
|
||||||
fi
|
fi
|
||||||
@ -148,6 +149,8 @@ _printargs() {
|
|||||||
printf -- "%s" "$1='$2'"
|
printf -- "%s" "$1='$2'"
|
||||||
fi
|
fi
|
||||||
printf "\n"
|
printf "\n"
|
||||||
|
# return the saved exit status
|
||||||
|
return "$_exitstatus"
|
||||||
}
|
}
|
||||||
|
|
||||||
_dlg_versions() {
|
_dlg_versions() {
|
||||||
|
Loading…
Reference in New Issue
Block a user