Add go to path instead of GO_BIN

This commit is contained in:
Mustafa Gezen 2022-10-30 20:02:26 +01:00
parent 5894fc8ba8
commit 7aca3e10a1
Signed by untrusted user who does not match committer: mustafa
GPG Key ID: DCDF010D946438C1
1 changed files with 3 additions and 3 deletions

View File

@ -6,11 +6,11 @@ source hack/bazel_setup.sh
$BAZEL_B @go_sdk//...
GO_BIN="$(bazel info output_base)/external/go_sdk/bin/go"
export PATH="$(bazel info output_base)/external/go_sdk/bin:$PATH"
if [[ -n $($GO_BIN fmt -n $(go list ./... | grep -v /vendor/) | sed 's/ -w//') ]]; then
if [[ -z $(go fmt -n $(go list ./... | grep -v /vendor/) | sed 's/ -w//') ]]; then
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
fi