From e6b71919d719e96b108d601971570182ef063b00 Mon Sep 17 00:00:00 2001 From: Vincent Lesierse Date: Fri, 13 Mar 2015 21:21:36 +0100 Subject: [PATCH] Checkout the according tag of the Home repo --- .ci/run-with-all-tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/run-with-all-tags.sh b/.ci/run-with-all-tags.sh index 42bc970f..e4503731 100755 --- a/.ci/run-with-all-tags.sh +++ b/.ci/run-with-all-tags.sh @@ -8,7 +8,7 @@ set -e # Exit immediately upon failure for tag in `.ci/find-tags.sh $1`; do TAG=${IMAGE}:${tag} BRANCH=master - if [[ ${tag} == "nightly" ]]; then BRANCH=dev; fi + if [[ ${tag} == "nightly" ]]; then BRANCH=dev; else BRANCH=tags/v${tag} ; fi echo "[CI] ----------------------------------" echo "[CI] Verifying '$2' app with '$TAG'" .ci/run-app.sh $TAG $2 $BRANCH