From 66499c954f92332ca7a2a2dcb981c064857269fb Mon Sep 17 00:00:00 2001 From: "Tobias L. Maier" Date: Sun, 29 Apr 2018 19:35:22 +0200 Subject: [PATCH] compose_version not used in test and push hooks --- hooks/push | 2 +- hooks/test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/push b/hooks/push index 61eb4c4..3fba919 100755 --- a/hooks/push +++ b/hooks/push @@ -2,7 +2,7 @@ set -ex -while read -r docker_version compose_version; +while read -r docker_version _; do image=${DOCKER_REPO}:${docker_version} echo "# Pushing image ${image}..." diff --git a/hooks/test b/hooks/test index 0443bf7..207fc75 100755 --- a/hooks/test +++ b/hooks/test @@ -2,7 +2,7 @@ set -ex -while read -r docker_version compose_version; +while read -r docker_version _; do image=${DOCKER_REPO}:${docker_version} echo "# Testing image ${image}..."