Skip to content

Commit

Permalink
CI: proper escaping of parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
pcanal committed Dec 27, 2024
1 parent 6d3bda9 commit 2b63614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/root-ci-config/build_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def relatedrepo_GetClosestMatch(repo_name: str, origin: str, upstream: str):
if current_head == "latest-stable":
# Resolve the 'latest-stable' branch to the latest merged head/tag
current_head = get_stdout_subprocess(f"""
git --git-dir={gitdir} for-each-ref --points-at=latest-stable^2 --format=%\(refname:short\)
git --git-dir={gitdir} for-each-ref --points-at=latest-stable^2 --format=%\\(refname:short\\)
""", "Failed capture of lastest-stable underlying branch name")
return fetch_url, current_head

Expand Down

0 comments on commit 2b63614

Please sign in to comment.