summaryrefslogtreecommitdiffstats
path: root/.ci
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2021-01-11 22:17:00 -0500
committerJoseph Donofry <joedonofry@gmail.com>2021-01-11 22:17:00 -0500
commit74e32dd96b8ed04d46802226551e72b68ab17e48 (patch)
tree7c6dc65db8c1f681d7f0c98bfaec483895a3c196 /.ci
parenta8877c39f40d805213f8805b3467d3d0ac165350 (diff)
Update QtQuick versions to match Qt 5.10
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/format.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/.ci/format.sh b/.ci/format.sh
index e1e6c1e4..eaa995b8 100755
--- a/.ci/format.sh
+++ b/.ci/format.sh
@@ -8,10 +8,16 @@
set -eu
FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \))
+QML_FILES=$(find resources -type f -iname "*.qml")
for f in $FILES
do
clang-format -i "$f"
done;
+for f in $QML_FILES
+do
+ qmlformat -i $f
+done;
+
git diff --exit-code