mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
39 lines
700 B
Bash
Executable File
39 lines
700 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Generate the Go code for the generator and
|
|
# transformer factory functions in
|
|
#
|
|
# sigs.k8s.io/kustomize/api/builtins
|
|
#
|
|
# from the raw plugin directories found under
|
|
#
|
|
# sigs.k8s.io/kustomize/plugin/builtin
|
|
|
|
set -e
|
|
|
|
myGoPath=$1
|
|
if [ -z ${1+x} ]; then
|
|
myGoPath=$GOPATH
|
|
fi
|
|
|
|
if [ -z "$myGoPath" ]; then
|
|
echo "Must specify a GOPATH"
|
|
exit 1
|
|
fi
|
|
|
|
dir=$myGoPath/src/sigs.k8s.io/kustomize
|
|
|
|
if [ ! -d "$dir" ]; then
|
|
echo "$dir is not a directory."
|
|
exit 1
|
|
fi
|
|
|
|
for goMod in $(find ./plugin/builtin -name 'go.mod'); do
|
|
dir=$(dirname "${goMod}")
|
|
(cd $dir; GOPATH=$myGoPath go generate ./...)
|
|
echo "Formatting $dir"
|
|
(cd $dir; GOPATH=$myGoPath go fmt ./...)
|
|
done
|
|
|
|
echo All done.
|