mirror of
https://github.com/chocolate-doom/statcheck.git
synced 2024-11-10 07:12:09 +00:00
Ignore trailing CR in statdump files.
The generated files are in DOS file format.
This commit is contained in:
parent
91b75eb7d6
commit
a22157f19d
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ OUTPUTS = $(subst expected/,output/,$(shell find expected/ -name '*.txt'))
|
||||||
UNZIPOPTS = -L -o
|
UNZIPOPTS = -L -o
|
||||||
|
|
||||||
check: expected output
|
check: expected output
|
||||||
@diff -x .gitignore -u -r expected output && echo all tests passed
|
diff --strip-trailing-cr -x .gitignore -u -r expected output
|
||||||
|
@echo all tests passed
|
||||||
|
|
||||||
output: $(OUTPUTS)
|
output: $(OUTPUTS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue