Skip to content

Commit 8e959b7

Browse files
authored
exclude windows diff check (again!)🤞
1 parent c9fdc25 commit 8e959b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ jobs:
4545
echo "::error title={No Output}::Test run for Niwot site failed to produce output"
4646
exit 1
4747
# check whether niwot.out has changed
48-
- name: Check whether niwot.out has changed
48+
- name: Check whether niwot.out has changed
49+
if: runner.os != 'Windows' #fails b/c line endings?
4950
shell: bash
5051
run: |
51-
if git diff --exit-code --ignore-cr-at-eol Sites/Niwot/niwot.out; then
52+
if git diff --exit-code Sites/Niwot/niwot.out; then
5253
echo "Success: Niwot.out created and has not changed"
5354
else
5455
echo "::error title={Output Changed}::The test file niwot.out has changed"

0 commit comments

Comments
 (0)