From 874b1bf4bf170f344e98cfc7f192d7bba058d1e8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 27 May 2017 12:01:29 +0100 Subject: [PATCH] added rm to remove any existing serverlist --- linuxgsm.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index e32a89dce..1c0eb3664 100644 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -265,9 +265,11 @@ if [ "${shortname}" == "core" ]; then serverlist="${datadir}/serverlist.csv" # Download the serverlist. This is the complete list of all supported servers. - # Download to tmp dir - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "serverlist.csv" "nochmodx" "norun" "noforcedl" "nomd5" + if [ -f "${serverlist}" ]; then + rm "${serverlist}" + fi + fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "serverlist.csv" "nochmodx" "norun" "noforcedl" "nomd5" if [ ! -f "${serverlist}" ]; then echo "[ FAIL ] serverlist.csv could not be loaded." exit 1