Browse Source
_checkSudo: [ -z "__INTERACTIVE" ] should be [ -z "$__INTERACTIVE" ]
Fixes #5216
pull/5217/head
oittaa
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
acme.sh
|
@ -7139,7 +7139,7 @@ _processAccountConf() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_checkSudo() { |
|
|
_checkSudo() { |
|
|
if [ -z "__INTERACTIVE" ]; then |
|
|
|
|
|
|
|
|
if [ -z "$__INTERACTIVE" ]; then |
|
|
#don't check if it's not in an interactive shell |
|
|
#don't check if it's not in an interactive shell |
|
|
return 0 |
|
|
return 0 |
|
|
fi |
|
|
fi |
|
|