~ubuntu-branches/ubuntu/vivid/mkgmap/vivid

« back to all changes in this revision

Viewing changes to scripts/download/buildwatch

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2014-08-13 22:13:41 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140813221341-i9dzzjuto2o7hfh6
Tags: 0.0.0+svn3333-1
* New upstream version
  Closes: #745097
* add debian/classpath (thanks for the patch to Manfred Stock
  <manfred.stock+debian@gmail.com>)
  Closes: #741596
* d/copyright: DEP5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
BIN=/home/steve/scripts/mkgmap
4
 
 
5
 
while :
6
 
do
7
 
        redis-cli blpop svn:branch-build-trigger 0
8
 
        if [ "$?" != "0" ]; then
9
 
                echo redis connection failed
10
 
                sleep 60
11
 
                continue
12
 
        fi
13
 
 
14
 
        (
15
 
        $BIN/mksnapbranches mkgmap
16
 
        $BIN/mksnapbranches splitter
17
 
        ) | mail -s 'Branch builds' steve@parabola.me.uk
18
 
        sleep 120
19
 
done