~teejee2008/timeshift/trunk

« back to all changes in this revision

Viewing changes to build-install.sh

  • Committer: Tony George
  • Date: 2013-10-24 15:11:55 UTC
  • Revision ID: teejee2008@gmail.com-20131024151155-3phu9mo26k2oflxq
Improved detection of disk partitions

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
cd "$DIR"
6
6
 
7
7
sh build-deb.sh
 
8
 
 
9
#check for errors
 
10
if [ $? -ne 0 ]; then
 
11
        cd "$backup"
 
12
        echo "Failed"
 
13
        exit 1
 
14
fi
 
15
 
8
16
sudo gdebi --non-interactive ../builds/timeshift*.deb
9
17
 
 
18
#check for errors
 
19
if [ $? -ne 0 ]; then
 
20
        cd "$backup"
 
21
        echo "Failed"
 
22
        exit 1
 
23
fi
 
24
 
10
25
cd "$backup"