Skip to content

Commit

Permalink
Merge pull request #5217 from oittaa/patch-2
Browse files Browse the repository at this point in the history
_checkSudo: [ -z "__INTERACTIVE" ] should be [ -z "$__INTERACTIVE" ]
  • Loading branch information
Neilpang committed Jul 23, 2024
2 parents 11aef82 + 6b6faa8 commit 5cded5b
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 5cded5b

Please sign in to comment.