Skip to content

Commit ce0b454

Browse files
authored
Fix extra parentheses in soundness.sh (#1383)
The soundness script was failing to run with the error: `find: you have too many ')'`
1 parent 7fa7cb1 commit ce0b454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/soundness.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ EOF
100100
\( \! -path './assets/*' -a \
101101
\( \! -path './coverage/*' -a \
102102
\( "${matching_files[@]}" \) \
103-
\) \) \) \) \) \) \) \)
103+
\) \) \) \) \) \) \)
104104
} | while read -r line; do
105105
if [[ "$(replace_acceptable_years < "$line" | head -n "$expected_lines" | shasum)" != "$expected_sha" ]]; then
106106
printf "\033[0;31mmissing headers in file '%s'!\033[0m\n" "$line"

0 commit comments

Comments
 (0)