2181932e31
* port changes * build overlay on successful merge to master * fixes to Makefile * permissions * dep ensure * gopath * let's try vgo * remove dep * maybe alpine is the issue * tagging go version on build * stupid vgo * vgo * adding tags to push * quotes * local linting fixes & stupid travis
10 lines
231 B
Bash
Executable File
10 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
FILES=$(find $PWD -type f ! -path '*vendor/*' \( -iname '*.go' ! -iname "*.pb.go" \))
|
|
for i in $FILES
|
|
do
|
|
if ! grep -q 'Copyright' <<< "$(head -n 2 "$i")"
|
|
then
|
|
echo " missing copyright header for $i"
|
|
fi
|
|
done
|