fix --valgrind option

This commit is contained in:
Stefan Bühler 2008-07-13 21:58:24 +02:00
parent 4938962b76
commit e6f30c948c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ CMD="./build/default/src/icfp08radar localhost 17676"
if [ "$1" == "--gdb" ]; then
CMD="gdb --args ${CMD}"
elif [ "$1" == "--valgrind" ]; then
CMD="valgrind --args ${CMD}"
CMD="valgrind ${CMD}"
fi
exec $CMD