diff --git a/goclean.sh b/goclean.sh index 2f7f95cf2..4e41e7e5f 100755 --- a/goclean.sh +++ b/goclean.sh @@ -46,8 +46,8 @@ echo "mode: count" > profile.cov # Standard go tooling behavior is to ignore dirs with leading underscores. for dir in $(find . -maxdepth 10 -not -path '.' -not -path './.git*' \ - -not -path '*/_*' -not -path './cmd*' -not -path './release*' \ - -not -path './vendor*' -type d) + -not -path './.glide*' -not -path '*/_*' -not -path './cmd*' \ + -not -path './release*' -not -path './vendor*' -type d) do if ls $dir/*.go &> /dev/null; then go test -covermode=count -coverprofile=$dir/profile.tmp $dir