mirror of
https://github.com/valitydev/botkube.git
synced 2024-11-06 16:35:22 +00:00
22 lines
351 B
Bash
Executable File
22 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
find_files() {
|
|
find . -not \( \
|
|
\( \
|
|
-wholename '*/vendor/*' \
|
|
\) -prune \
|
|
\) -name '*.go'
|
|
}
|
|
|
|
bad_files=$(find_files | xargs gofmt -d -s 2>&1)
|
|
if [[ -n "${bad_files}" ]]; then
|
|
echo "${bad_files}" >&2
|
|
echo >&2
|
|
echo "Run ./hack/update-gofmt.sh" >&2
|
|
exit 1
|
|
fi
|