remove .tool/check-license
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
e269cb8b7e
commit
c268bf28b0
1 changed files with 0 additions and 13 deletions
|
@ -1,13 +0,0 @@
|
|||
#!/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
|
||||
(head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)") || (echo "${file}:missing license header" && ret=1)
|
||||
done
|
||||
|
||||
exit $ret
|
Loading…
Reference in a new issue