scripts: don't descend into .git for license header check

reviewable/pr748/r1
Brad Fitzpatrick 4 years ago
parent a877dd575c
commit edb47b98a8

@ -30,7 +30,7 @@ if [ $# != 1 ]; then
fi
fail=0
for file in $(find $1 -name '*.go'); do
for file in $(find $1 -name '*.go' -not -path '*/.git/*'); do
case $file in
$1/tempfork/*)
# Skip, tempfork of third-party code

Loading…
Cancel
Save