diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-01-12 15:03:39 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-01-12 15:03:39 +0100 |
commit | 6090d00251ce8cb192a564d74dab91c735e6745f (patch) | |
tree | 6abd57e98f10f031e4712604815a4d1587542df9 /.ci | |
parent | Make it easier to understand, what button to click for verification from profile (diff) | |
download | nheko-6090d00251ce8cb192a564d74dab91c735e6745f.tar.xz |
Revert "Update QtQuick versions to match Qt 5.10"
This reverts commit 74e32dd96b8ed04d46802226551e72b68ab17e48.
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.ci/format.sh b/.ci/format.sh index eaa995b8..e1e6c1e4 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -8,16 +8,10 @@ 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 |