Skip to content

Commit 8f6c623

Browse files
[CI] Add missing comma
Or otherwise the strings get concatenated...
1 parent aea1f5c commit 8f6c623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zorg/buildbot/builders/annotated/premerge/dispatch_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def start_build_linux(commit_sha: str, k8s_client) -> str:
5959
"""Starts a pod to build/test on Linux at the specified SHA."""
6060
pod_name = f"build-{commit_sha}"
6161
commands = [
62-
'echo "@@@BUILD_STEP Cloning Repository@@@"'
62+
'echo "@@@BUILD_STEP Cloning Repository@@@"',
6363
"git clone --depth 100 https://github.com/llvm/llvm-project",
6464
"cd llvm-project",
6565
f"git checkout ${commit_sha}",

0 commit comments

Comments
 (0)