From c42c19356c5cfbe84619f7c6a272dafc266fc43c Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 25 Oct 2021 13:18:17 +0000 Subject: [PATCH] mpp: fix long options The correct way to specify long options is as separate arguments, not as one argument separated by comma. --- tools/osbuild-mpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/osbuild-mpp b/tools/osbuild-mpp index 9e062353..c9fca462 100755 --- a/tools/osbuild-mpp +++ b/tools/osbuild-mpp @@ -909,7 +909,7 @@ def main(): help="Path to DNF cache-directory to use", ) parser.add_argument( - "-I,--import-dir", + "-I", "--import-dir", dest="searchdirs", default=[], action="append", @@ -922,7 +922,7 @@ def main(): help="Sort keys in generated json", ) parser.add_argument( - "-D,--define", + "-D", "--define", default=[], dest="vars", action='append',