diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-02-02 11:50:57 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-02-02 11:50:57 -0500 |
commit | 2a858d84e22c3813a380d4ff3e838cd0093955a0 (patch) | |
tree | fdb5496fb731cd6c77185b0b328786d91cbda288 /.ci | |
parent | Try to fix format script and fix linting (diff) | |
download | nheko-2a858d84e22c3813a380d4ff3e838cd0093955a0.tar.xz |
Update format script again
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/format.sh b/.ci/format.sh index 31eba878..cdbc0464 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -14,7 +14,8 @@ do clang-format -i "$f" done; -QMLFORMAT_PATH=$(command -v qmlformat) +QMLFORMAT_PATH=$(command -v qmlformat || true) + if [ -n "$QMLFORMAT_PATH" ]; then QML_FILES=$(find resources -type f -iname "*.qml") |