diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-01-11 22:17:00 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-01-11 22:17:00 -0500 |
commit | 74e32dd96b8ed04d46802226551e72b68ab17e48 (patch) | |
tree | 7c6dc65db8c1f681d7f0c98bfaec483895a3c196 /.ci | |
parent | Merge branch 'master' of ssh://github.com/Nheko-Reborn/nheko (diff) | |
download | nheko-74e32dd96b8ed04d46802226551e72b68ab17e48.tar.xz |
Update QtQuick versions to match Qt 5.10
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 6 |
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 |