Skip to content

Commit df350e6

Browse files
author
neil
committed
fix format
1 parent a1ea2a5 commit df350e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

acme.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ _secure_debug3() {
437437
}
438438

439439
__USE_TR_TAG=""
440-
if [ "$(echo "abc" | LANG=C tr a-z A-Z 2>/dev/null)" != "ABC" ] ; then
440+
if [ "$(echo "abc" | LANG=C tr a-z A-Z 2>/dev/null)" != "ABC" ]; then
441441
__USE_TR_TAG="1"
442442
fi
443443
export __USE_TR_TAG
@@ -446,7 +446,7 @@ _upper_case() {
446446
if [ "$__USE_TR_TAG" ]; then
447447
LANG=C tr '[:lower:]' '[:upper:]'
448448
else
449-
# shellcheck disable=SC2018,SC2019
449+
# shellcheck disable=SC2018,SC2019
450450
LANG=C tr '[a-z]' '[A-Z]'
451451
fi
452452
}

0 commit comments

Comments
 (0)