mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 23:07:17 +00:00
ce1d0e9975
* Increase buffers in rasc2
18 lines
236 B
Bash
Executable File
18 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
|
|
MAKE=make
|
|
gmake --help >/dev/null 2>&1
|
|
[ $? = 0 ] && MAKE=gmake
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
|
|
# update
|
|
if [ -d .hg ]; then
|
|
hg pull -u
|
|
elif [ -d .git ]; then
|
|
git pull
|
|
fi
|
|
|
|
./sys/build.sh && sudo ${MAKE} symstall
|