From 4d14c4bed01294e468ca9bcbdd50a1c350e11b61 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 29 Oct 2020 09:00:16 -0700 Subject: [PATCH] lorax: Strip ' from product cmdline argument Temporary work around pungi issue: https://pagure.io/pungi/pull-request/1463 --- src/sbin/lorax | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sbin/lorax b/src/sbin/lorax index 5f8fb882..ea3ba28a 100755 --- a/src/sbin/lorax +++ b/src/sbin/lorax @@ -97,6 +97,9 @@ def main(): parser = lorax_parser(DRACUT_DEFAULT) opts = parser.parse_args() + # XXX Temporary workaround for https://pagure.io/pungi/pull-request/1463 + opts.product = opts.product.strip("'") + log.info("Lorax v%s", pylorax.vernum) if not opts.source and not opts.repos: