This is an automated email from the ASF dual-hosted git repository.
csantanapr pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-alarms.git
The following commit(s) were added to refs/heads/master by this push:
new 0efc3e3 bug fix: give both tags to `docker tag` (#186)
0efc3e3 is described below
commit 0efc3e35f7c9f9dac90e24f0de1057950a689df1
Author: David Grove <[email protected]>
AuthorDate: Tue Apr 9 22:06:35 2019 -0400
bug fix: give both tags to `docker tag` (#186)
---
tools/travis/deploy.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/travis/deploy.sh b/tools/travis/deploy.sh
index 007e244..9f1389d 100755
--- a/tools/travis/deploy.sh
+++ b/tools/travis/deploy.sh
@@ -37,7 +37,7 @@ if [ ${dockerhub_image_tag} == "latest" ]; then
dockerhub_githash_image="${dockerhub_image_prefix}/${dockerhub_image_name}:${short_commit}"
echo docker tag ${dockerhub_image} ${dockerhub_githash_image}
- docker tag ${dockerhub_githash_image}
+ docker tag ${dockerhub_image} ${dockerhub_githash_image}
echo docker push ${dockerhub_githash_image}
docker push ${dockerhub_githash_image}