Start directory for 'untested' plugins.

This commit is contained in:
jregan
2020-12-01 06:28:53 -08:00
parent 35a19fb8a9
commit 67db23b24b
6 changed files with 83 additions and 27 deletions

View File

@@ -55,13 +55,9 @@ if onLinuxAndNotOnRemoteCI; then
make $(go env GOPATH)/bin/kubeval
fi
for goMod in $(find ./plugin -name 'go.mod'); do
for goMod in $(find ./plugin -name 'go.mod' -not -path "./plugin/untested/*"); do
d=$(dirname "${goMod}")
if [[ "$d" == "./plugin/someteam.example.com/v1/gogetter" ]]; then
echo "Skipping broken $d"
else
scanDir $d
fi
scanDir $d
done
if [ $rcAccumulator -ne 0 ]; then