From 9742ee265f1bd9ddf5d136fbcaae677e8f558b06 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Tue, 14 Oct 2014 23:22:02 +0200 Subject: [PATCH] fix eressea.ini for travis, again --- s/travis-build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/s/travis-build b/s/travis-build index 47c50d9f9..88b95d850 100755 --- a/s/travis-build +++ b/s/travis-build @@ -1,14 +1,16 @@ #!/bin/sh +inifile() { if [ ! -e eressea.ini ]; then cp conf/eressea.ini . build/iniparser/inifile eressea.ini add lua:paths lunit:scripts fi +} [ -d build ] || mkdir build cd build && cmake .. \ -DCMAKE_MODULE_PATH=$PWD/../cmake/Modules \ -DCMAKE_BUILD_TYPE=Debug .. && \ -make && cd .. && +make && cd .. && inifile && build/eressea/test_eressea && build/eressea/eressea -v1 scripts/run-tests.lua