mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-12 08:00:05 +01:00
10 lines
280 B
Bash
Executable file
10 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
licRes=$(
|
|
for file in $(find . -type f -iname '*.go' ! -path '*/vendor/*'); do
|
|
head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)" || echo -e " ${file}"
|
|
done;)
|
|
if [ -n "${licRes}" ]; then
|
|
echo -e "license header checking failed:\n${licRes}"
|
|
exit 255
|
|
fi
|