diff options
author | jak1 <jak1@themanaworld.org> | 2024-02-16 14:50:14 -0300 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-02-26 21:30:46 +0100 |
commit | cfbf2d1618f273e766f576f33099d4ecb1e27610 (patch) | |
tree | f445e5df2bf6c1f0667e1b5a9511bf03cf7ec046 /tools/ci/scripts/runtest.sh | |
parent | 190851b99b7ac3548f8db3637ddf5a64ba298051 (diff) | |
download | manaplus-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.gz manaplus-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.bz2 manaplus-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.xz manaplus-cfbf2d1618f273e766f576f33099d4ecb1e27610.zip |
Rename log file manaplus.log -> manaverse.log
(Fedja) I'm suspecting that some CI will break on this.
Split off from !45: Rename the program from ManaPlus to ManaVerse.
****
mana/plus!135
Co-authored-by: Fedja Beader <fedja@protonmail.ch>
Diffstat (limited to 'tools/ci/scripts/runtest.sh')
-rwxr-xr-x | tools/ci/scripts/runtest.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/ci/scripts/runtest.sh b/tools/ci/scripts/runtest.sh index e629fc514..622e04da0 100755 --- a/tools/ci/scripts/runtest.sh +++ b/tools/ci/scripts/runtest.sh @@ -18,7 +18,7 @@ function check_is_run { } function check_assert { - grep -A 20 "Assert:" "${HOME}/.local/share/mana/manaplus.log" + grep -A 20 "Assert:" "${HOME}/.local/share/mana/manaverse.log" if [ "$?" == 0 ]; then echo "Assert found in log" exit 1 @@ -31,9 +31,9 @@ function wait_for_servers_list { echo "wait for servers list ${n}" check_is_run # check here - grep "Skipping servers list update" "${HOME}/.local/share/mana/manaplus.log" && return - grep "Servers list updated" "${HOME}/.local/share/mana/manaplus.log" && return - grep "Error: servers list updating error" "${HOME}/.local/share/mana/manaplus.log" + grep "Skipping servers list update" "${HOME}/.local/share/mana/manaverse.log" && return + grep "Servers list updated" "${HOME}/.local/share/mana/manaverse.log" && return + grep "Error: servers list updating error" "${HOME}/.local/share/mana/manaverse.log" if [ "$?" == 0 ]; then echo "Servers list downloading error" exit 1 |