Skip to content
Snippets Groups Projects
Verified Commit 9408eca4 authored by Michael Chernigin's avatar Michael Chernigin
Browse files

fix: kflavours should be a list

parent 8ae07da5
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,10 @@ def main():
default=platform.machine(),
)
parser.add_argument(
"--kflavour",
"--kflavours",
"-k",
help="Kernel(s) to extract packages for",
default="6.12",
default=["6.12"],
nargs="+",
)
parser.add_argument(
......@@ -64,7 +64,7 @@ def main():
pkgs = set()
for file in edition_files:
options = ae.PackagesFilterOptions(
kflavours=args.kflavour,
kflavours=args.kflavours,
arch=args.arch,
desktop=args.desktop,
language=args.language,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment