Fix license-check

This commit is contained in:
Philipp Holzer 2022-01-16 20:48:11 +01:00
parent 5c35459a18
commit 29638f2f40
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@ exitVal=0
printf "\n"
for file in "${files[@]}"; do
if [ ! -f "$file" ]; then
continue
fi
php_license_md5=$(head -n "$php_template_rows" "$file" | md5sum)
[[ "$php_template_md5" != "$php_license_md5" ]] && printf " - %s\n" "$file" && exitVal=1
done