Skip to content

Commit

Permalink
Fix quoting (#1988)
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorcloudy authored Jul 8, 2024
1 parent 1840998 commit 122ce87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -3074,7 +3074,7 @@ def show_gerrit_review_link(git_repository, pipeline_steps):
commit = os.getenv("BUILDKITE_COMMIT")
text = f"- The transformed code used in this pipeline can be found under https://{host}-review.googlesource.com/q/{commit}\n" \
f"- Fetch the source with `git fetch https://{host}.googlesource.com/bazel {commit} && git checkout FETCH_HEAD`"
commands = ["buildkite-agent annotate --style=info --context 'gerrit' '{}'".format(text)]
commands = ['buildkite-agent annotate --style=info --context "gerrit" "{}"'.format(text)]
pipeline_steps.append(
create_step(
label=":pipeline: Print information about Gerrit Review Link",
Expand Down

0 comments on commit 122ce87

Please sign in to comment.