From c6dbc88ea9cc70ed2897432b07ff1a0137cd59cb Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Thu, 5 Dec 2024 07:40:50 -0600 Subject: [PATCH] Re-install FTB if manifest is missing (#3177) --- scripts/start-deployFTBA | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-deployFTBA b/scripts/start-deployFTBA index 69fa1182..e83d9809 100755 --- a/scripts/start-deployFTBA +++ b/scripts/start-deployFTBA @@ -62,7 +62,7 @@ elif ! [[ ${FTB_MODPACK_VERSION_ID} =~ [0-9]+ ]]; then exit 1 fi -if isTrue "$FTB_FORCE_REINSTALL" || ! [ -f "${ftbInstallMarker}" ] || [ "$(cat "${ftbInstallMarker}")" != "${FTB_MODPACK_ID}=${FTB_MODPACK_VERSION_ID}" ]; then +if isTrue "$FTB_FORCE_REINSTALL" || ! [ -f "${ftbManifest}" ] || ! [ -f "${ftbInstallMarker}" ] || [ "$(cat "${ftbInstallMarker}")" != "${FTB_MODPACK_ID}=${FTB_MODPACK_VERSION_ID}" ]; then ftbInstaller=/data/ftb-installer arm= if ! [[ -f "${ftbInstaller}" ]]; then