From 84f268c98db2c7e78284146732fe7008b449bd0f Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 16 May 2019 21:05:35 -0700 Subject: [PATCH] Fix BootProtocols parsing Mark it with the same action as other lists, otherwise its parsing from a config file is broken. --- mkosi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkosi b/mkosi index 7551d0227..352799711 100755 --- a/mkosi +++ b/mkosi @@ -3208,7 +3208,7 @@ def create_parser() -> ArgumentParserMkosi: help='Do not run tests as part of build script, if supported') group.add_argument("--with-tests", action=BooleanAction, default=True, help=argparse.SUPPRESS) # Compatibility option group.add_argument("--cache", dest='cache_path', help='Package cache path', metavar='PATH') - group.add_argument("--extra-tree", action='append', dest='extra_trees', default=[], + group.add_argument("--extra-tree", action=CommaDelimitedListAction, dest='extra_trees', default=[], help='Copy an extra tree on top of image', metavar='PATH') group.add_argument("--skeleton-tree", action='append', dest='skeleton_trees', default=[], help='Use a skeleton tree to bootstrap the image before installing anything', metavar='PATH') -- 2.47.2