summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2024-01-12 01:58:41 +0100
committerGitHub <noreply@github.com>2024-01-12 01:58:41 +0100
commita4d90a9a64cd1040efc64efc96700911407e7db9 (patch)
treec1a1fd81328111e198a7233c2ab639177a18ccdd
parentMerge pull request #12639 from liamwhite/format-oops (diff)
parentci: fix file mode check in format script (diff)
downloadyuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar.gz
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar.bz2
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar.lz
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar.xz
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.tar.zst
yuzu-a4d90a9a64cd1040efc64efc96700911407e7db9.zip
-rwxr-xr-x.ci/scripts/format/script.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/format/script.sh b/.ci/scripts/format/script.sh
index 572fa9ffb..c22398de0 100755
--- a/.ci/scripts/format/script.sh
+++ b/.ci/scripts/format/script.sh
@@ -25,7 +25,7 @@ for f in $FILES_TO_LINT; do
"$CLANG_FORMAT" -i "$f"
done
-DIFF=$(git diff)
+DIFF=$(git -c core.fileMode=false diff)
if [ ! -z "$DIFF" ]; then
echo "!!! Not compliant to coding style, here is the fix:"