diff options
author | Mikael Frykholm <mifr@sunet.se> | 2024-08-13 10:20:46 +0200 |
---|---|---|
committer | Mikael Frykholm <mifr@sunet.se> | 2024-08-13 10:20:46 +0200 |
commit | f886a5f1c0db1b25098332de97c5b1665d8ab032 (patch) | |
tree | 3ec91c2d5059a9641331130aebca302edc097d13 | |
parent | 96bcf17088365e66310cead42c0eb9d1c698e921 (diff) |
Set which shell we assume. Also remove stderr from test as debian prints Warnings on stderr for xsltproc.md-2024-08-13-v01
-rw-r--r-- | metadata/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/metadata/Makefile b/metadata/Makefile index a8affdfc..981abc7d 100644 --- a/metadata/Makefile +++ b/metadata/Makefile @@ -1,4 +1,4 @@ - +SHELL=/bin/bash SRCDIRS=swamid-2.0 swamid-edugain swamid-testing NOW=$(shell perl scripts/now_date.pl) @@ -84,8 +84,8 @@ checkInvalidChars: checkUKalgorithms: @echo "Check for invalid algorithms in swamid-edugain" - @xsltproc --xinclude xslt/check_uk_algorithms.xsl swamid-edugain/* 2>&1 | sed 's/.*/[1;31m&[0m/' | grep . && exit 1 || exit 0 - @xsltproc --xinclude xslt/check_algsupport.xsl swamid-edugain/* 2>&1 | sed 's/.*/[1;31m&[0m/' | grep . && exit 1 || exit 0 + @xsltproc --xinclude xslt/check_uk_algorithms.xsl swamid-edugain/* | sed 's/.*/[1;31m&[0m/' | grep . && exit 1 || exit 0 + @xsltproc --xinclude xslt/check_algsupport.xsl swamid-edugain/* | sed 's/.*/[1;31m&[0m/' | grep . && exit 1 || exit 0 test: $(EDUGAINXML) $(SWAMID20XML) $(TESTINGXML) testMDUI testALlevel testEduGAINchecks testRefedsRnS testBadStrings testRegistrationAuthority checkInvalidChars checkUKalgorithms |