From: Andrea Zagli Date: Tue, 3 Sep 2019 14:37:53 +0000 (+0200) Subject: Script controllo agg.: aggiunta opzione per non fare il check dei branch non presenti. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=059eace6be9814bc41ebf04f55a6dae99ac7393e;p=msys2 Script controllo agg.: aggiunta opzione per non fare il check dei branch non presenti. --- 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