Skip to content

Commit

Permalink
Remove unused "rhel" arch prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoWilken authored Oct 18, 2023
1 parent 107fdea commit 4ccd30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alibuild_helpers/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def optionOrder(x):
args = finaliseArgs(parser.parse_args(), parser)
return (args, parser)

VALID_ARCHS_RE = "^slc[5-9]_(x86-64|ppc64|aarch64)$|^(rhel|ubuntu|ubt|osx|fedora)[0-9]*_(x86-64|arm64)$"
VALID_ARCHS_RE = "^slc[5-9]_(x86-64|ppc64|aarch64)$|^(ubuntu|ubt|osx|fedora)[0-9]*_(x86-64|arm64)$"

def matchValidArch(architecture):
return bool(re.match(VALID_ARCHS_RE, architecture))
Expand Down

0 comments on commit 4ccd30c

Please sign in to comment.