From e4f81f4a6c0c6705dbcac1a97fb997935bc2b00f Mon Sep 17 00:00:00 2001 From: Tom Page Date: Mon, 23 Jul 2018 13:12:34 +0100 Subject: [PATCH] RM-6428 Fix typo in tag name. The digest is meant to be appended with a minus, rather than an underscore. --- scripts/pushDockerDigestTag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pushDockerDigestTag.sh b/scripts/pushDockerDigestTag.sh index 9fa2ee353e..57eeda9f17 100755 --- a/scripts/pushDockerDigestTag.sh +++ b/scripts/pushDockerDigestTag.sh @@ -55,7 +55,7 @@ do exit 1 fi - newTag=${existingTag}_${digest} + newTag=${existingTag}-${digest} # Remove the source repository name if it contains one. slashes=`echo $sourceImage | sed "s|[^/]||g"`