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

View file

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