From 08dbdac3b747bd71f1c38c5f5d68cd443ae1f1b2 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Mon, 1 Feb 2021 21:02:27 -0500 Subject: [PATCH] Change bash variable check --- .ci/format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/format.sh b/.ci/format.sh index 4df4282a..f2d01cec 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -15,7 +15,7 @@ do done; QMLFORMAT_PATH=$(which qmlformat) -if [ ! -z "$QMLFORMAT_PATH" ]; then +if [ -n "$QMLFORMAT_PATH" ]; then QML_FILES=$(find resources -type f -iname "*.qml") for f in $QML_FILES