diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-02-01 21:02:27 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-02-01 21:02:27 -0500 |
commit | 08dbdac3b747bd71f1c38c5f5d68cd443ae1f1b2 (patch) | |
tree | 20e97478ddae91c3cc8ccd7cd2efc493bc8fabe4 /.ci | |
parent | Update wording on settings page for privacy timer (diff) | |
download | nheko-08dbdac3b747bd71f1c38c5f5d68cd443ae1f1b2.tar.xz |
Change bash variable check
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 2 |
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 |