mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
b60af6d878
- 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
13 lines
213 B
Bash
Executable File
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" ]
|