From: Erik Skultety Date: Thu, 24 Aug 2023 08:32:24 +0000 (+0200) Subject: ci: helper: Don't make ':' literal a static part of the image tag X-Git-Tag: v9.8.0-rc1~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6f930b43586cfe28fa995e7cc35c620eb1a02fe;p=thirdparty%2Flibvirt.git ci: helper: Don't make ':' literal a static part of the image tag ':' is just a connecting character, we can add it to the appropriate place later in the Python script later, but it doesn't make sense to be part of the image 'tag' string. Signed-off-by: Erik Skultety Reviewed-by: Daniel P. Berrangé --- diff --git a/ci/helper b/ci/helper index 8986772153..d3de6d96cb 100755 --- a/ci/helper +++ b/ci/helper @@ -40,7 +40,7 @@ class Parser: ) containerparser.add_argument( "--image-tag", - default=":latest", + default="latest", help="use container images with non-default tags", )