mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 16:59:08 +00:00
a832ca0555
- Results pushed to http://radare.org/farm
15 lines
205 B
Bash
Executable File
15 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $PWD/$0`
|
|
up() {
|
|
if [ -d ../../.hg ]; then
|
|
hg pull -u
|
|
elif [ -d ../../.git ]; then
|
|
git pull
|
|
fi
|
|
}
|
|
. ./CONFIG
|
|
while : ; do
|
|
up ; ( ./check.sh ) && ./run.sh
|
|
sleep ${SLEEP}
|
|
done
|