diff options
author | Joe <rubberduckie3554@gmail.com> | 2021-07-25 19:03:56 -0400 |
---|---|---|
committer | Joe <rubberduckie3554@gmail.com> | 2021-07-25 19:03:56 -0400 |
commit | c8879e7c076bd865e2e0f19638b1a0f6fe943f0c (patch) | |
tree | 7a0a626103222ba0a03e3ca3fd7f83af9f8c7f32 /.ci | |
parent | Fix crash when storing secrets (diff) | |
download | nheko-c8879e7c076bd865e2e0f19638b1a0f6fe943f0c.tar.xz |
Remove QML from format script (it causes too many issues)
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/.ci/format.sh b/.ci/format.sh index 2d922ee1..cc4a3b82 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -14,17 +14,4 @@ do clang-format -i "$f" done; -QMLFORMAT_PATH=$(command -v qmlformat || true) - -if [ -n "$QMLFORMAT_PATH" ]; then - QML_FILES=$(find resources -type f -iname "*.qml") - - for f in $QML_FILES - do - $QMLFORMAT_PATH -i "$f" - done; -else - echo "qmlformat not found; skipping qml formatting" -fi - git diff --exit-code |