~teejee2008/timeshift/trunk

« back to all changes in this revision

Viewing changes to push.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:
6
6
 
7
7
sh build-source.sh
8
8
 
 
9
#check for errors
 
10
if [ $? -ne 0 ]; then
 
11
        cd "$backup"
 
12
        echo "Failed"
 
13
        exit 1
 
14
fi
 
15
 
9
16
echo "Pushing new revisions to launchpad..."
10
17
bzr push lp:~teejee2008/timeshift/trunk
11
18
 
 
19
#check for errors
 
20
if [ $? -ne 0 ]; then
 
21
        cd "$backup"
 
22
        echo "Failed"
 
23
        exit 1
 
24
fi
 
25
 
12
26
cd "$backup"
13
27
 
14
28