mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
20 lines
396 B
Bash
Executable File
20 lines
396 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
source hack/bazel_setup.sh
|
|
|
|
$BAZEL_B @go_sdk//...
|
|
|
|
export PATH="$(bazel info output_base)/external/go_sdk/bin:$PATH"
|
|
|
|
$(go fmt -n $(go list ./... | grep -v /vendor/) | sed 's/ -w//') > /tmp/fmt
|
|
|
|
if [[ -n "$(cat /tmp/fmt)" ]]; then
|
|
echo "Go files must be formatted with gofmt. Please run:"
|
|
echo ' go fmt $(go list ./... | grep -v /vendor/)'
|
|
exit 1
|
|
fi
|
|
|
|
|