diff options
-rwxr-xr-x | tools/ci/scripts/runtests.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/ci/scripts/runtests.sh b/tools/ci/scripts/runtests.sh index b2659c134..9e2e913b6 100755 --- a/tools/ci/scripts/runtests.sh +++ b/tools/ci/scripts/runtests.sh @@ -20,6 +20,8 @@ while true; do echo "run test ${n}" rm "${HOME}/.config/mana/mana/config.xml" rm "/root/.config/mana/mana/config.xml" + rm "${HOME}/.config/mana/mana/serverlistplus.xml" + rm "/root/.config/mana/mana/serverlistplus.xml" ./tools/ci/scripts/runtest.sh if [ "$?" != 0 ]; then exit 1 @@ -35,7 +37,8 @@ echo "existing config runs" n=0 while true; do echo "run test ${n}" - rm "${HOME}/.config/mana/mana/config.xml" + rm "${HOME}/.config/mana/mana/serverlistplus.xml" + rm "/root/.config/mana/mana/serverlistplus.xml" ./tools/ci/scripts/runtest.sh if [ "$?" != 0 ]; then exit 1 |