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 <eskultet@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Erik Skultety 2023-08-24 10:32:24 +02:00
parent 5f78628fb6
commit f6f930b435

View File

@ -40,7 +40,7 @@ class Parser:
)
containerparser.add_argument(
"--image-tag",
default=":latest",
default="latest",
help="use container images with non-default tags",
)