mirror of
https://github.com/containers/podman.git
synced 2025-06-23 10:38:20 +08:00
40 lines
829 B
Bash
Executable File
40 lines
829 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
find_files() {
|
|
find . -not \( \
|
|
\( \
|
|
-wholename '*/vendor/*' \
|
|
\) -prune \
|
|
\) -name '*.go' \
|
|
-not \( -wholename './_output/*' \) \
|
|
-not \( -wholename './cmd/podman/ioprojectatomicpodman/ioprojectatomicpodman.go' \)
|
|
}
|
|
FIX=0
|
|
GOFMT="gofmt -s"
|
|
bad_files=$(find_files | xargs $GOFMT -l)
|
|
|
|
while getopts "f?:" opt; do
|
|
case "$opt" in
|
|
f) FIX=1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ -n "${bad_files}" ]]; then
|
|
if (($FIX == 1)) ; then
|
|
echo "Correcting the following files:"
|
|
echo "${bad_files}"
|
|
while read -r go_file; do
|
|
gofmt -s -w $go_file
|
|
done <<< "${bad_files}"
|
|
else
|
|
echo "!!! '$GOFMT' needs to be run on the following files: "
|
|
echo "${bad_files}"
|
|
exit 1
|
|
fi
|
|
fi
|