Browse Source

fix(mtaserver): correct wrong executable name in update (#2353)

pull/2362/head
DUDU54 6 years ago
committed by Daniel Gibbs
parent
commit
56a971c2d4
  1. 10
      lgsm/functions/update_mta.sh

10
lgsm/functions/update_mta.sh

@ -18,7 +18,7 @@ fn_update_mta_dl(){
if [ "${exitcode}" == "0" ]; then if [ "${exitcode}" == "0" ]; then
fn_print_ok_eol_nl fn_print_ok_eol_nl
fn_script_log_pass "Copying to ${serverfiles}" fn_script_log_pass "Copying to ${serverfiles}"
chmod u+x "${serverfiles}/minecraft_server.jar" chmod u+x "${serverfiles}/mta-server64"
fn_clear_tmp fn_clear_tmp
else else
fn_print_fail_eol_nl fn_print_fail_eol_nl
@ -63,7 +63,7 @@ fn_update_mta_localbuild(){
fn_script_log_error "Set localbuild to 0" fn_script_log_error "Set localbuild to 0"
sleep 0.5 sleep 0.5
fi fi
totalseconds=$((totalseconds + 1)) totalseconds=$((totalseconds + 1))
done done
fi fi
@ -81,7 +81,7 @@ fn_update_mta_localbuild(){
if [ -z "${loopignore}" ]; then if [ -z "${loopignore}" ]; then
loopignore=1 loopignore=1
fn_script_log_info "Waiting for local build to generate" fn_script_log_info "Waiting for local build to generate"
fi fi
localbuild=$(grep "= Multi Theft Auto: San Andreas v" "${serverfiles}/mods/deathmatch/logs/server.log" | awk '{ print $7 }' | sed -r 's/^.{1}//' | tail -1) localbuild=$(grep "= Multi Theft Auto: San Andreas v" "${serverfiles}/mods/deathmatch/logs/server.log" | awk '{ print $7 }' | sed -r 's/^.{1}//' | tail -1)
if [ "${localbuild}" ]; then if [ "${localbuild}" ]; then
break break
@ -90,7 +90,7 @@ fn_update_mta_localbuild(){
totalseconds=$((totalseconds + 1)) totalseconds=$((totalseconds + 1))
done done
fi fi
if [ -z "${localbuild}" ]; then if [ -z "${localbuild}" ]; then
localbuild="0" localbuild="0"
fn_print_error "Checking for update: ${remotelocation}: waiting for local build: missing local build info" fn_print_error "Checking for update: ${remotelocation}: waiting for local build: missing local build info"
@ -129,7 +129,7 @@ fn_update_mta_remotebuild(){
fn_script_log_fatal "Unable to get remote build" fn_script_log_fatal "Unable to get remote build"
core_exit.sh core_exit.sh
fi fi
fi fi
} }
fn_update_mta_compare(){ fn_update_mta_compare(){

Loading…
Cancel
Save