Skip to content

Commit

Permalink
_checkSudo: [ -z "__INTERACTIVE" ] should be [ -z "$__INTERACTIVE" ]
Browse files Browse the repository at this point in the history
Fixes #5216
  • Loading branch information
oittaa authored Jul 20, 2024
1 parent 11aef82 commit 6b6faa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7139,7 +7139,7 @@ _processAccountConf() {
}

_checkSudo() {
if [ -z "__INTERACTIVE" ]; then
if [ -z "$__INTERACTIVE" ]; then
#don't check if it's not in an interactive shell
return 0
fi
Expand Down

0 comments on commit 6b6faa8

Please sign in to comment.