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 |
#!/bin/bash backup=`pwd` DIR="$( cd "$( dirname "$0" )" && pwd )" cd "$DIR" sh build-deb.sh #check for errors if [ $? -ne 0 ]; then cd "$backup" echo "Failed" exit 1 fi sudo gdebi --non-interactive ../builds/timeshift*.deb #check for errors if [ $? -ne 0 ]; then cd "$backup" echo "Failed" exit 1 fi cd "$backup" |