Skip to content

Commit

Permalink
Fix buildfix.sh (#8241)
Browse files Browse the repository at this point in the history
After #8198, `buildfix.sh` pointed to a non-existent `//:goimports.sh`
target. Point it to the right one!
  • Loading branch information
dan-stowell authored Jan 24, 2025
1 parent a4cb2f4 commit 05a50dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildfix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ done < <(git ls-files '*.go')
bazel run "${BAZEL_QUIET_FLAGS[@]}" //:gofmt -- -w "${GO_SRCS[@]}"

echo "Building and running goimports..."
bazel run "${BAZEL_QUIET_FLAGS[@]}" //:goimports.sh -- -w "${GO_SRCS[@]}"
bazel run "${BAZEL_QUIET_FLAGS[@]}" //tools/goimports -- -w "${GO_SRCS[@]}"

echo "Formatting .proto files..."
protos=()
Expand Down

0 comments on commit 05a50dd

Please sign in to comment.