mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
6 lines
130 B
Bash
Executable File
6 lines
130 B
Bash
Executable File
for f in $(find ./ -name '*.go'); do
|
|
echo $f
|
|
# go run go.coder.com/go-tools/cmd/goimports
|
|
~/gopath/bin/goimports -w $f
|
|
done
|