diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-04-05 00:35:42 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-04-05 00:36:00 +0200 |
commit | 6020bae4d4454c29c3a9a3bff9a31b6cfdfb887f (patch) | |
tree | 854c1917cd32bbc0545d2bfbbb7698c7a4388c1f | |
parent | a2a267dcf7ac795c7f662650daadc5fb3baf551c (diff) | |
download | manaplus-6020bae4d4454c29c3a9a3bff9a31b6cfdfb887f.tar.gz manaplus-6020bae4d4454c29c3a9a3bff9a31b6cfdfb887f.tar.bz2 manaplus-6020bae4d4454c29c3a9a3bff9a31b6cfdfb887f.tar.xz manaplus-6020bae4d4454c29c3a9a3bff9a31b6cfdfb887f.zip |
Fix the even more poking of CI
-rwxr-xr-x | tools/ci/scripts/runtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci/scripts/runtest.sh b/tools/ci/scripts/runtest.sh index 12b0d78f2..37b3db934 100755 --- a/tools/ci/scripts/runtest.sh +++ b/tools/ci/scripts/runtest.sh @@ -37,7 +37,7 @@ function wait_for_servers_list { dd if=/dev/zero of="${HOME}/.config/mana/mana/serverlistplus.xml" bs=4K count=3 rm "${HOME}/.config/mana/mana/serverlistplus.xml" - if [[ -f "${HOME}/.config/mana/mana/serverlistplus.xml.part"]]; then + if [[ -f "${HOME}/.config/mana/mana/serverlistplus.xml.part" ]]; then echo "Warning: Partial download existed, please investigate" rm "${HOME}/.config/mana/mana/serverlistplus.xml.part" fi |