platformtest.sh: Delete ngIRCd binary before test run

This ensures that we definitely don't test an old binary later on ...
This commit is contained in:
Alexander Barton 2016-01-10 17:44:36 +01:00
parent 2254e92e60
commit 0a6e284582
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ if [ -r "$SRC_D/configure" ]; then
[ -n "$VERBOSE" ] && "$SRC_D/configure" -C || "$SRC_D/configure" -C >/dev/null
if [ $? -eq 0 ] && [ -r ./Makefile ]; then
R_CONFIGURE=1
rm -f "src/ngircd/ngircd"
echo "$NAME: Running \"$MAKE\" ..."
[ -n "$VERBOSE" ] && "$MAKE" || "$MAKE" >/dev/null
if [ $? -eq 0 ] && [ -x src/ngircd/ngircd ]; then