public
Description: Auto-builds and tests all the branches of your git projects, showing pass/fail results on a web page/RSS feed. Isolates failures to the first commit that caused the problem.
Homepage:
Clone URL: git://github.com/apenwarr/gitbuilder.git
gitbuilder / stop
100755 8 lines (6 sloc) 0.12 kb
1
2
3
4
5
6
7
8
#!/bin/bash
if [ ! -e lock.lock ]; then
echo "Not running; lock.lock doesn't exist."
exit 1
fi
 
kill $(cat lock.lock)