1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#!/bin/bash backup=`pwd` DIR="$( cd "$( dirname "$0" )" && pwd )" cd "$DIR" sh build-source.sh #check for errors if [ $? -ne 0 ]; then cd "$backup" echo "Failed" exit 1 fi echo "Pushing new revisions to launchpad..." bzr push lp:~teejee2008/timeshift/trunk #check for errors if [ $? -ne 0 ]; then cd "$backup" echo "Failed" exit 1 fi cd "$backup" |