fix licensecheck output filter

This commit is contained in:
Simon Stürz 2015-12-18 18:48:55 +01:00 committed by Michael Zanetti
parent 750d8228f3
commit 11c4e650c9

View File

@ -3,7 +3,7 @@ if test -z "$results"; then
exit 0
else
echo "*** License check failed. Offending files:"
licensecheck -r -c '\.(cpp|h)$' $1 | grep -v "GPL (v2)" | grep -v "GPL (v2)" | grep -v "BSD" | grep -v "GENERATED"
licensecheck -r -c '\.(cpp|h)$' $1 | grep -v "GPL (v2)" | grep -v "GPL (v2)" | grep -v "GPL (v3)" | grep -v "BSD" | grep -v "GENERATED"
exit 1
fi