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
> log.log
+LEN=$((${#REMOTE} + 1))
+
for BRANCH in $BRANCHES
do
- LEN=$((${#REMOTE} + 1))
-
BRANCH=${BRANCH:$LEN}
CHECKED=`git branch | grep $BRANCH`
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