- 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
17 lines
236 B
Bash
Executable file
17 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
|