We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cf116 commit a31a70eCopy full SHA for a31a70e
scripts/validate_license_headers.sh
@@ -111,7 +111,7 @@ EOF
111
find . \
112
\( \! -path './.build/*' \) -a \
113
\( "${matching_files[@]}" \) -a \
114
- \( \! \( "${exceptions[@]}" \) \) \) | while read line; do
+ \( \! \( "${exceptions[@]}" \) \) | while read line; do
115
if [[ "$(cat "$line" | replace_acceptable_years | head -n $expected_lines | shasum)" != "$expected_sha" ]]; then
116
printf "\033[0;31mmissing headers in file '$line'!\033[0m\n"
117
diff -u <(cat "$line" | replace_acceptable_years | head -n $expected_lines) "$tmp"
0 commit comments