fe60ba02a3
* overlay proto * grpc server and client * fix import to storj * tests * change imports * imports cleanup/comments * PR comments addressed from @jtolds * lint step for copyright headers * spelling * PR comments addressed from @jtolds
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILES=$(find $PWD -type f \( -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
|