diff --git a/php-cs/check-license.sh b/php-cs/check-license.sh index 409ec7b..d425e42 100755 --- a/php-cs/check-license.sh +++ b/php-cs/check-license.sh @@ -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)