Browse Source

fix resolving update not running on install (#2893)

pull/2892/head
Daniel Gibbs 5 years ago
committed by GitHub
parent
commit
95ce894f10
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lgsm/functions/update_factorio.sh
  2. 3
      lgsm/functions/update_minecraft.sh
  3. 3
      lgsm/functions/update_minecraft_bedrock.sh
  4. 3
      lgsm/functions/update_mta.sh
  5. 3
      lgsm/functions/update_mumble.sh
  6. 3
      lgsm/functions/update_steamcmd.sh
  7. 3
      lgsm/functions/update_ts3.sh

3
lgsm/functions/update_factorio.sh

@ -170,4 +170,7 @@ else
fn_update_factorio_remotebuild fn_update_factorio_remotebuild
fn_update_factorio_compare fn_update_factorio_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_minecraft.sh

@ -218,4 +218,7 @@ else
fn_update_minecraft_remotebuild fn_update_minecraft_remotebuild
fn_update_minecraft_compare fn_update_minecraft_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_minecraft_bedrock.sh

@ -178,4 +178,7 @@ else
fn_update_minecraft_remotebuild fn_update_minecraft_remotebuild
fn_update_minecraft_compare fn_update_minecraft_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_mta.sh

@ -209,4 +209,7 @@ else
fn_update_mta_remotebuild fn_update_mta_remotebuild
fn_update_mta_compare fn_update_mta_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_mumble.sh

@ -148,4 +148,7 @@ else
fn_update_mumble_remotebuild fn_update_mumble_remotebuild
fn_update_mumble_compare fn_update_mumble_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_steamcmd.sh

@ -246,4 +246,7 @@ else
fn_update_steamcmd_remotebuild fn_update_steamcmd_remotebuild
fn_update_steamcmd_compare fn_update_steamcmd_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

3
lgsm/functions/update_ts3.sh

@ -219,4 +219,7 @@ else
fn_update_ts3_remotebuild fn_update_ts3_remotebuild
fn_update_ts3_compare fn_update_ts3_compare
fi fi
if [ "${commandname}" != "INSTALL" ]; then
core_exit.sh core_exit.sh
fi

Loading…
Cancel
Save