From 7d89f9111853179cf53f176e587d10c083baafb8 Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Mon, 16 Jan 2023 17:07:33 +0000
Subject: [PATCH] fix: docker_push docs

---
 gitlab-ci/docker_push.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gitlab-ci/docker_push.sh b/gitlab-ci/docker_push.sh
index 16333af09..534d1c93e 100755
--- a/gitlab-ci/docker_push.sh
+++ b/gitlab-ci/docker_push.sh
@@ -17,8 +17,8 @@ function print_the_help {
   echo "          --dockerhub     Publish to DH only"
   echo "  positional              At least one export tag (e.g., v3.0-stable)"
   echo ""
-  echo "  Execute docker push from image:input_tag to REGISTRY/image:export_tag for"
-  echo "  for all export tags. Will push to $CI_REGISTRY, and optionally also to"
+  echo "  Execute docker push from image:label to REGISTRY/image:export_tag for"
+  echo "  all export tags. Will push to $CI_REGISTRY, and optionally also to"
   echo "  Dockerhub if the DH_PUSH environment variable is set"
   echo ""
   echo "EXAMPLE: ./docker_push.sh -i eic_base -l 3.0.0 3.0.0 3.0-stable"
@@ -97,7 +97,7 @@ if [ -z $IMAGE ]; then
   exit 1
 fi
 if [ -z $INPUT_TAG ]; then
-  echo "ERROR: no input_Tag given, please use -t <INPUT_TAG>"
+  echo "ERROR: no input_tag given, please use -l <INPUT_TAG>"
   print_the_help
   exit 1
 fi
-- 
GitLab