Browse Source

messages

pull/1255/head
Daniel Gibbs 8 years ago
parent
commit
622a3bc8fd
  1. 7
      lgsm/functions/mods_core.sh

7
lgsm/functions/mods_core.sh

@ -377,14 +377,14 @@ fn_mods_create_tmp_dir(){
if [ ! -d "${modstmpdir}" ]; then if [ ! -d "${modstmpdir}" ]; then
mkdir -p "${modstmpdir}" mkdir -p "${modstmpdir}"
exitcode=$? exitcode=$?
echo -ne "creating mod download dir ${modstmpdir}..." echo -ne "creating mod download directory ${modstmpdir}..."
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
fn_script_log_fatal "Creating mod download dir ${modstmpdir}" fn_script_log_fatal "Creating mod download directory ${modstmpdir}"
core_exit.sh core_exit.sh
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fn_script_log_pass "Creating mod download dir ${modstmpdir}" fn_script_log_pass "Creating mod download directory ${modstmpdir}"
fi fi
fi fi
} }
@ -392,6 +392,7 @@ fn_mods_create_tmp_dir(){
# Remove the tmp mod download directory when finished # Remove the tmp mod download directory when finished
fn_mods_clear_tmp_dir(){ fn_mods_clear_tmp_dir(){
if [ -d "${modstmpdir}" ]; then if [ -d "${modstmpdir}" ]; then
echo -ne "clearing mod download directory ${modstmpdir}..."
rm -r "${modstmpdir}" rm -r "${modstmpdir}"
exitcode=$? exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then

Loading…
Cancel
Save