From f030f2136bee9f4c403e7e986f21e4d19c5698b7 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sat, 21 Oct 2017 14:19:50 +0200 Subject: [PATCH] Forcing download instead of explicitly deleting old server list --- linuxgsm.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 5cf2f56dd..819a19222 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -276,12 +276,8 @@ if [ "${shortname}" == "core" ]; then datadir="${tmpdir}/data" serverlist="${datadir}/serverlist.csv" - # Download the serverlist. This is the complete list of all supported servers. - - if [ -f "${serverlist}" ]; then - rm "${serverlist}" - fi - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "noforcedl" "nomd5" + # Download the latest serverlist. This is the complete list of all supported servers. + fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" if [ ! -f "${serverlist}" ]; then echo "[ FAIL ] serverlist.csv could not be loaded." exit 1