Merge remote-tracking branch '697/main' into ncalteen-format

This commit is contained in:
Nick Alteen 2023-08-24 10:29:12 -04:00
commit 6aeed90eb5

View File

@ -50,9 +50,9 @@ jobs:
- name: Compare Expected and Actual Directories
id: diff
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol dist/
git diff --ignore-space-at-eol --text dist/
exit 1
fi