Skip to content

Commit 5cded5b

Browse files
authored
Merge pull request #5217 from oittaa/patch-2
_checkSudo: [ -z "__INTERACTIVE" ] should be [ -z "$__INTERACTIVE" ]
2 parents 11aef82 + 6b6faa8 commit 5cded5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7139,7 +7139,7 @@ _processAccountConf() {
71397139
}
71407140

71417141
_checkSudo() {
7142-
if [ -z "__INTERACTIVE" ]; then
7142+
if [ -z "$__INTERACTIVE" ]; then
71437143
#don't check if it's not in an interactive shell
71447144
return 0
71457145
fi

0 commit comments

Comments
 (0)