radare2/sys/farm/check.sh
pancake b60af6d878 * Initial implementation of sys/farm
- add missing sys/gtk.sh
* Define TODO for 0.8.6
* Add URL attribute in dot graphs for 'ag' command
  - as requested by @hteso for bokken
* Empty graphs are now printing nothing to stdout
  - same as above
2011-09-23 00:16:29 +02:00

13 lines
213 B
Bash
Executable File

#!/bin/sh
revision() {
echo `hg tip|head -n 1|cut -d : -f 2`
}
cd `dirname $PWD/$0` ; cd ..
. ./farm/CONFIG
[ ! -f farm/last-revision ] && exit 1
now=`revision`
old=`cat farm/last-revision`
[ "$now" = "$old" ]