summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2021-02-01 21:02:27 -0500
committerJoseph Donofry <joedonofry@gmail.com>2021-02-01 21:02:27 -0500
commit08dbdac3b747bd71f1c38c5f5d68cd443ae1f1b2 (patch)
tree20e97478ddae91c3cc8ccd7cd2efc493bc8fabe4 /.ci
parentUpdate wording on settings page for privacy timer (diff)
downloadnheko-08dbdac3b747bd71f1c38c5f5d68cd443ae1f1b2.tar.xz
Change bash variable check
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/format.sh2
1 files changed, 1 insertions, 1 deletions
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