RM-6428 Fix typo in tag name.

The digest is meant to be appended with a minus, rather than an underscore.
This commit is contained in:
Tom Page
2018-07-23 13:12:34 +01:00
parent 016658cbb3
commit e4f81f4a6c

View File

@@ -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"`