From aafcabd9647353263f5082746031cbe75f37cd60 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 3 Sep 2019 14:15:25 +0200 Subject: [PATCH] Script controllo agg.: esecuzione del controllo con debian_tobeupdated.sh. --- .gitignore | 3 ++- tools/autobuilder/debian_tobeupdated.sh | 6 ++++-- tools/autobuilder/debian_tobeupdated_all.sh | 9 +++++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index afb2a64..d04b895 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ repository tmp -*.~*~ +*~ + diff --git a/tools/autobuilder/debian_tobeupdated.sh b/tools/autobuilder/debian_tobeupdated.sh index 90ea027..10f871d 100755 --- a/tools/autobuilder/debian_tobeupdated.sh +++ b/tools/autobuilder/debian_tobeupdated.sh @@ -28,7 +28,9 @@ git stash pop TO_BE_MERGED=`git branch --merged | grep $UPSTREAM_BRANCH` if [ "$TO_BE_MERGED" = "" ]; then - echo -e "\nThe debian branch must be updated." + echo -e "\nThe debian branch must be updated." + exit 1 else - echo -e "\nNot to be updated." + echo -e "\nNot to be updated." + exit 0 fi diff --git a/tools/autobuilder/debian_tobeupdated_all.sh b/tools/autobuilder/debian_tobeupdated_all.sh index 8c0cd42..0b4c462 100755 --- a/tools/autobuilder/debian_tobeupdated_all.sh +++ b/tools/autobuilder/debian_tobeupdated_all.sh @@ -13,10 +13,10 @@ BRANCHES=`git branch -rvv | grep $REMOTE | grep debian | awk '{print $1}'` > log.log +LEN=$((${#REMOTE} + 1)) + for BRANCH in $BRANCHES do - LEN=$((${#REMOTE} + 1)) - BRANCH=${BRANCH:$LEN} CHECKED=`git branch | grep $BRANCH` @@ -25,4 +25,9 @@ do fi git checkout $BRANCH &>> log.log + + "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/debian_tobeupdated.sh &>> log.log + if [ $? -eq 1 ]; then + echo "Branch $BRANCH must be updated." + fi done -- 2.49.0