Browse Source

fix(update): incorrect variable name (#4179)

pull/4181/head
Daniel Gibbs 2 years ago
committed by GitHub
parent
commit
d28a0e74d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/update_factorio.sh
  2. 2
      lgsm/functions/update_vintagestory.sh

2
lgsm/functions/update_factorio.sh

@ -18,7 +18,7 @@ fn_update_localbuild() {
# Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}"
# Uses executable to get local build.
if [ -d "${exutabledir}" ]; then
if [ -d "${executabledir}" ]; then
cd "${executabledir}" || exit
localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}')
fi

2
lgsm/functions/update_vintagestory.sh

@ -18,7 +18,7 @@ fn_update_localbuild() {
# Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}"
# Uses executable to get local build.
if [ -d "${exutabledir}" ]; then
if [ -d "${executabledir}" ]; then
cd "${executabledir}" || exit
localbuild="$(${preexecutable} ${executable} --version | sed '/^[[:space:]]*$/d')"
fi

Loading…
Cancel
Save