]> saetta.ns0.it Git - msys2/commitdiff
Inizio sviluppo script per controllo aggiornamento pacchetti debian del framework.
authorAndrea Zagli <azagli@libero.it>
Tue, 3 Sep 2019 12:01:25 +0000 (14:01 +0200)
committerAndrea Zagli <azagli@libero.it>
Tue, 3 Sep 2019 12:01:25 +0000 (14:01 +0200)
tools/autobuilder/debian_tobeupdated_all.sh [new file with mode: 0755]

diff --git a/tools/autobuilder/debian_tobeupdated_all.sh b/tools/autobuilder/debian_tobeupdated_all.sh
new file mode 100755 (executable)
index 0000000..8c0cd42
--- /dev/null
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+REMOTE=origin
+
+while getopts "r:" opt; do
+    case $opt in
+        r)
+          REMOTE=$OPTARG
+    esac
+done
+
+BRANCHES=`git branch -rvv | grep $REMOTE | grep debian | awk '{print $1}'`
+
+> log.log
+
+for BRANCH in $BRANCHES
+do
+    LEN=$((${#REMOTE} + 1))
+
+    BRANCH=${BRANCH:$LEN}
+    CHECKED=`git branch | grep $BRANCH`
+
+    if [ "$CHECKED" = "" ]; then
+       echo "Branch $BRANCH to be checked"
+    fi
+    
+    git checkout $BRANCH &>> log.log
+done