fix format

pull/6513/head
neil 2025-09-15 19:34:54 +02:00
parent a1ea2a5aa6
commit df350e6660
1 changed files with 2 additions and 2 deletions

View File

@ -437,7 +437,7 @@ _secure_debug3() {
}
__USE_TR_TAG=""
if [ "$(echo "abc" | LANG=C tr a-z A-Z 2>/dev/null)" != "ABC" ] ; then
if [ "$(echo "abc" | LANG=C tr a-z A-Z 2>/dev/null)" != "ABC" ]; then
__USE_TR_TAG="1"
fi
export __USE_TR_TAG
@ -446,7 +446,7 @@ _upper_case() {
if [ "$__USE_TR_TAG" ]; then
LANG=C tr '[:lower:]' '[:upper:]'
else
# shellcheck disable=SC2018,SC2019
# shellcheck disable=SC2018,SC2019
LANG=C tr '[a-z]' '[A-Z]'
fi
}