From a98b5fdd4b7ca8dbabbd98ad20718c5819b6e032 Mon Sep 17 00:00:00 2001 From: Jonathan Rosewood Date: Sat, 2 Mar 2019 00:32:12 +0300 Subject: [PATCH] fix(fctrserver): resolve factorio update bug --- lgsm/functions/update_factorio.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/update_factorio.sh b/lgsm/functions/update_factorio.sh index 887bdd22b..794a0aac4 100644 --- a/lgsm/functions/update_factorio.sh +++ b/lgsm/functions/update_factorio.sh @@ -81,10 +81,10 @@ fn_update_factorio_arch(){ fn_update_factorio_availablebuild(){ # Gets latest build info. - if [ "${branch}" != "stable" ]; then - availablebuild=$(${curlpath} -s https://factorio.com/get-download/stable/headless/linux64 | grep -o '[0-9]\.[0-9]\{2\}\.[0-9]\{2\}' | head -1) + if [ "${branch}" == "stable" ]; then + availablebuild=$(${curlpath} -s https://factorio.com/get-download/stable/headless/linux64 | grep -o '[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}' | head -1) else - availablebuild=$(${curlpath} -s https://factorio.com/get-download/latest/headless/linux64 | grep -o '[0-9]\.[0-9]\{2\}\.[0-9]\{2\}' | head -1) + availablebuild=$(${curlpath} -s https://factorio.com/get-download/latest/headless/linux64 | grep -o '[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}' | head -1) fi # Checks if availablebuild variable has been set if [ -z "${availablebuild}" ]; then