We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4606202 + 9be52dc commit cbe73a1Copy full SHA for cbe73a1
.github/actions/verify-generated-files/action.yml
@@ -12,4 +12,5 @@ runs:
12
ext/tokenizer/tokenizer_data_gen.php
13
build/gen_stub.php -f
14
build/gen_stub.php --generate-optimizer-info
15
- git add . -N && git diff --exit-code
+ # Use the -a flag for a bug in git 2.46.0, which doesn't consider changed -diff files.
16
+ git add . -N && git diff -a --exit-code
0 commit comments