Skip to content

Commit

Permalink
use the correct index for addpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Dec 11, 2024
1 parent 4570cd0 commit 413563b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions process_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,9 @@ def check_test_cmd(first_line, repo, params):
prs = get_prs_list_from_string(m.group(11), repo)
if m.group(20):
cmssw_que = m.group(20)
if m.group(23):
if "addpkg" in m.group(23):
params["EXTRA_CMSSW_PACKAGES"] = m.group(25).strip()
if m.group(25):
if "addpkg" in m.group(25):
params["EXTRA_CMSSW_PACKAGES"] = m.group(27).strip()
else:
params["BUILD_FULL_CMSSW"] = "true"
return (True, " ".join(prs), wfs, cmssw_que)
Expand Down

0 comments on commit 413563b

Please sign in to comment.