mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
17 lines
288 B
Bash
Executable File
17 lines
288 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
ret=0
|
|
|
|
for file in $(find . -type f -iname '*.go' ! -path './vendor/*'); do
|
|
if ! head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)"; then
|
|
echo "${file}:missing license header"
|
|
ret=1
|
|
fi
|
|
done
|
|
|
|
exit $ret
|