Fix release shell script bug

Introduced by 43d9f38c5e and found during release
This commit is contained in:
Alfonso Acosta
2017-02-08 23:07:20 +00:00
parent 7d5ef4bccb
commit 86528281e7
+1 -1
View File
@@ -206,7 +206,7 @@ publish() {
echo "== Tagging and pushing images on docker hub as user $DOCKERHUB_USER"
$SUDO docker tag "$DOCKERHUB_USER"/scope "$DOCKERHUB_USER/scope:$VERSION"
$SUDO docker push "$DOCKERHUB_USER"/scope:$"VERSION"
$SUDO docker push "$DOCKERHUB_USER/scope:$VERSION"
$SUDO docker tag "$DOCKERHUB_USER/scope:$VERSION" "$DOCKERHUB_USER/scope:latest_release"
$SUDO docker push "$DOCKERHUB_USER/scope:latest_release"
echo "** Docker images tagged and pushed"