Browse Source

Fixed legacy scripts unable to create tmpdir

pull/1601/head
Daniel Gibbs 8 years ago
parent
commit
2834685a01
  1. 6
      lgsm/functions/core_functions.sh
  2. 8
      lgsm/functions/core_legacy.sh

6
lgsm/functions/core_functions.sh

@ -566,14 +566,14 @@ functionfile="${FUNCNAME}"
fn_fetch_function
}
# Calls code required for legacy servers
core_legacy.sh
# Creates tmp dir if missing
if [ ! -d "${tmpdir}" ]; then
mkdir -p "${tmpdir}"
fi
# Calls code required for legacy servers
core_legacy.sh
# Calls on-screen messages (bootstrap)
core_messages.sh

8
lgsm/functions/core_legacy.sh

@ -28,3 +28,11 @@ fi
if [ -z "${steamcmddir}" ]; then
steamcmddir="${rootdir}/steamcmd"
fi
if [ -z "${lgsmdir}" ]; then
lgsmdir="${rootdir}/lgsm"
fi
if [ -z "${tmpdir}" ]; then
tmpdir="${lgsmdir}/tmp"
fi

Loading…
Cancel
Save