Skip to content

Commit 2deff96

Browse files
committed
fix: use [ -n ... ] rather than ! [ -z ...]
Style fix. Courtesy of https://www.shellcheck.net/
1 parent 7147ac7 commit 2deff96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Docker/roundup_start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trap "echo 'Exiting on pipefail'" ERR
1616

1717
set -e
1818

19-
if ! [ -z "$SHELL_DEBUG" ]; then
19+
if [ -n "$SHELL_DEBUG" ]; then
2020
set -xv
2121
fi
2222

0 commit comments

Comments
 (0)