From f6f930b43586cfe28fa995e7cc35c620eb1a02fe Mon Sep 17 00:00:00 2001 From: Erik Skultety Date: Thu, 24 Aug 2023 10:32:24 +0200 Subject: [PATCH] ci: helper: Don't make ':' literal a static part of the image tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ':' 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é --- ci/helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", )