fix(scripts/check_unstaged.sh): add argument separator in git diff command (#17122)

This commit is contained in:
Cian Johnston
2025-03-27 08:57:12 +00:00
committed by GitHub
parent 2dc99c8469
commit b863eca196
+1 -1
View File
@@ -20,7 +20,7 @@ if [[ "$FILES" != "" ]]; then
log "These are the changes:" log "These are the changes:"
log log
for file in "${files[@]}"; do for file in "${files[@]}"; do
git --no-pager diff "$file" 1>&2 git --no-pager diff -- "$file" 1>&2
done done
log log