summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorJoe <rubberduckie3554@gmail.com>2021-07-25 19:03:56 -0400
committerJoe <rubberduckie3554@gmail.com>2021-07-25 19:03:56 -0400
commitc8879e7c076bd865e2e0f19638b1a0f6fe943f0c (patch)
tree7a0a626103222ba0a03e3ca3fd7f83af9f8c7f32 /.ci
parentFix crash when storing secrets (diff)
downloadnheko-c8879e7c076bd865e2e0f19638b1a0f6fe943f0c.tar.xz
Remove QML from format script (it causes too many issues)
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/format.sh13
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