]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
ci: helper: Don't make ':' literal a static part of the image tag
authorErik Skultety <eskultet@redhat.com>
Thu, 24 Aug 2023 08:32:24 +0000 (10:32 +0200)
committerErik Skultety <eskultet@redhat.com>
Tue, 12 Sep 2023 09:36:03 +0000 (11:36 +0200)
':' 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 <eskultet@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
ci/helper

index 8986772153e96eb0428a5ced350820a4cc9dca3b..d3de6d96cb8daa4d140f690ec9f64b777520769c 100755 (executable)
--- 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",
         )