fix licensecheck output filter

pull/135/head
Simon Stürz 2015-12-18 18:48:55 +01:00 committed by Michael Zanetti
parent 750d8228f3
commit 11c4e650c9
1 changed files with 1 additions and 1 deletions

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