mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-18 17:08:29 +00:00
Merge pull request #47 from mstg/fix-2-gofmt
Output go fmt results to temp file and check if empty
This commit is contained in:
commit
115bc2df5c
@ -8,7 +8,9 @@ $BAZEL_B @go_sdk//...
|
|||||||
|
|
||||||
export PATH="$(bazel info output_base)/external/go_sdk/bin:$PATH"
|
export PATH="$(bazel info output_base)/external/go_sdk/bin:$PATH"
|
||||||
|
|
||||||
if [[ -z $(go fmt -n $(go list ./... | grep -v /vendor/) | sed 's/ -w//') ]]; then
|
$(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 files must be formatted with gofmt. Please run:"
|
||||||
echo ' go fmt $(go list ./... | grep -v /vendor/)'
|
echo ' go fmt $(go list ./... | grep -v /vendor/)'
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user