Add license check #9

Merged
nupplaphil merged 4 commits from feat/license_check into stable 2022-07-04 01:22:53 +02:00
Showing only changes of commit 367884e91e - Show all commits

Exclude "strings.php" from license check

Philipp Holzer 2022-01-22 19:32:54 +01:00
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432

View file

@ -16,7 +16,7 @@ exitVal=0
printf "\n"
for file in "${files[@]}"; do
if [ ! -f "$file" ]; then
if [ ! -f "$file" ] || [[ "$file" == *strings.php ]]; then
continue
fi
php_license_md5=$(head -n "$php_template_rows" "$file" | md5sum)