Skip to content

Commit

Permalink
add | cat -t to the GA
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofVDB1 committed Dec 20, 2023
1 parent 577b976 commit 0aaaa14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/diff_generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
for file in $(find source -type f | grep -v ".git"); do
target_file=${file/source/target}
if [ -f "$target_file" ]; then
diff_output=$(diff -q --strip-trailing-cr -B -Z "$file" "$target_file" || true)
diff_output=$(diff -q "$file" "$target_file" | cat -t || true)
if [[ $diff_output == *"differ"* ]]; then
different_files+="$file\n"
else
Expand Down

0 comments on commit 0aaaa14

Please sign in to comment.