Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/koji/koji_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def clean_old_branches(git_repo):
subprocess.check_call(['git', 'push', '--delete', 'origin'] + old_branches)

def xcpng_version(target):
xcpng_version_match = re.match(r'^v(\d+\.\d+)-u-\S+$', target)
xcpng_version_match = re.match(r'^v(\d+\.\d+)-\S+$', target)
if xcpng_version_match is None:
raise Exception(f"Can't find XCP-ng version in {target}")
return xcpng_version_match.group(1)
Expand Down