Fix broken Makefiles.

This commit is contained in:
jregan
2020-04-22 12:04:18 -07:00
parent e287d68d0f
commit efeb26c634
8 changed files with 29 additions and 15 deletions

View File

@@ -5,8 +5,21 @@
set -e
# run all tests for kyaml and related commands
targets="kyaml cmd/config cmd/kubectl functions/examples/injection-tshirt-sizes functions/examples/template-go-nginx functions/examples/template-heredoc-cockroachdb functions/examples/validator-kubeval functions/examples/validator-resource-requests functions/examples/application-cr"
targets="
kyaml
cmd/config
cmd/kubectl
functions/examples/injection-tshirt-sizes
functions/examples/template-go-nginx
functions/examples/template-heredoc-cockroachdb
functions/examples/validator-kubeval
functions/examples/validator-resource-requests
functions/examples/application-cr
"
for target in $targets; do
echo "----- Making $target -----"
pushd .
cd $target
make all