From 059eace6be9814bc41ebf04f55a6dae99ac7393e Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 3 Sep 2019 16:37:53 +0200 Subject: [PATCH] Script controllo agg.: aggiunta opzione per non fare il check dei branch non presenti. --- tools/autobuilder/debian_tobeupdated_all.sh | 28 +++++++++++++++------ 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/tools/autobuilder/debian_tobeupdated_all.sh b/tools/autobuilder/debian_tobeupdated_all.sh index 0b4c462..6538238 100755 --- a/tools/autobuilder/debian_tobeupdated_all.sh +++ b/tools/autobuilder/debian_tobeupdated_all.sh @@ -1,11 +1,16 @@ #!/bin/bash REMOTE=origin +CHECKNEW=true -while getopts "r:" opt; do +while getopts "r:c" opt; do case $opt in r) - REMOTE=$OPTARG + REMOTE=$OPTARG + ;; + c) + CHECKNEW=false + ;; esac done @@ -21,13 +26,20 @@ do CHECKED=`git branch | grep $BRANCH` if [ "$CHECKED" = "" ]; then - echo "Branch $BRANCH to be checked" + MSG="Branch $BRANCH to be checked" + if [ "$CHECKNEW" = false ]; then + MSG=$MSG" (but not checked as requested)" + fi + MSG=$MSG"." + echo $MSG 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." + if [ "$CHECKED" != "" ] || ([ "$CHECKED" = "" ] && [ "$CHECKNEW" = true ]); then + 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 fi done -- 2.49.0