From 8ac4a763b54edf4d4ba27a189361ec4c1f307a1e Mon Sep 17 00:00:00 2001 From: Philip Hands Date: Mon, 20 Jun 2016 13:58:38 +0200 Subject: lvc: pass a flag on the command line to provoke use of $PU_GIT_BRANCH Signed-off-by: Holger Levsen --- bin/lvc.sh | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'bin') diff --git a/bin/lvc.sh b/bin/lvc.sh index 1a6dae4f..87a596b0 100755 --- a/bin/lvc.sh +++ b/bin/lvc.sh @@ -18,13 +18,18 @@ replace_origin_pu() { echo "${PREFIX}${BRANCH#origin/pu/}" } -# if $URL is set to something that looks like a pu git branch, try to find the matching .iso -if PU_ISO="$(replace_origin_pu "/srv/d-i/isos/mini-gtk-" $URL).iso" ; then - [ -f $PU_ISO ] || { - echo "looks like we're meant to be testing '$PU_ISO', but it's missing" +# if $URL is set to "use_PU_GIT_BRANCH" then use the contents of $PU_GIT_BRANCH to work out the locally built ISO name +if [ "use_PU_GIT_BRANCH" = "$URL" ] ; then + if PU_ISO="$(replace_origin_pu "/srv/d-i/isos/mini-gtk-" $PU_GIT_BRANCH).iso" ; then + [ -f "$PU_ISO" ] || { + echo "looks like we're meant to be testing '$PU_ISO', but it's missing" + exit 1 + } + URL=$PU_ISO + else + echo "URL='$URL' but PU_GIT_BRANCH='$PU_GIT_BRANCH' -- aborting" exit 1 - } - URL=$PU_ISO + fi fi cleanup_all() { -- cgit v1.2.3-70-g09d2