Browse Source

Merge pull request #1520 from bromfj/master

Fix for issue 1517 'DOI Setup Broken'
pull/1525/head
Daniel Gibbs 8 years ago
committed by GitHub
parent
commit
2fbdc5be65
  1. 4
      linuxgsm.sh

4
linuxgsm.sh

@ -29,6 +29,7 @@ servicename="${selfname}"
lockselfname=".${servicename}.lock" lockselfname=".${servicename}.lock"
lgsmdir="${rootdir}/lgsm" lgsmdir="${rootdir}/lgsm"
logdir="${rootdir}/log" logdir="${rootdir}/log"
lgsmlogdir="${logdir}/lgsm"
steamcmddir="${rootdir}/steamcmd" steamcmddir="${rootdir}/steamcmd"
serverfiles="${rootdir}/serverfiles" serverfiles="${rootdir}/serverfiles"
functionsdir="${lgsmdir}/functions" functionsdir="${lgsmdir}/functions"
@ -369,9 +370,10 @@ else
if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then
fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5"
fi fi
# Prevents running of core_exit.sh for Travis. # Prevents running of core_exit.sh for Travis.
if [ "${travistest}" != "1" ]; then if [ "${travistest}" != "1" ]; then
getopt=$1 getopt=$1
core_getopt.sh core_getopt.sh
fi fi
fi fi

Loading…
Cancel
Save