mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-13 13:52:27 +00:00
Make sure download new version of FTB installer (#3186)
This commit is contained in:
parent
755f1c5352
commit
94def951b6
1 changed files with 5 additions and 2 deletions
|
@ -62,8 +62,11 @@ elif ! [[ ${FTB_MODPACK_VERSION_ID} =~ [0-9]+ ]]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if isTrue "$FTB_FORCE_REINSTALL" || ! [ -f "${ftbManifest}" ] || ! [ -f "${ftbInstallMarker}" ] || [ "$(cat "${ftbInstallMarker}")" != "${FTB_MODPACK_ID}=${FTB_MODPACK_VERSION_ID}" ]; then
|
||||
ftbInstaller=/data/ftb-installer
|
||||
if isTrue "$FTB_FORCE_REINSTALL" ||
|
||||
! [ -f "${ftbManifest}" ] ||
|
||||
! [ -f "${ftbInstallMarker}" ] ||
|
||||
[ "$(cat "${ftbInstallMarker}")" != "${FTB_MODPACK_ID}=${FTB_MODPACK_VERSION_ID}" ]; then
|
||||
ftbInstaller=/data/ftb-installer-v2
|
||||
arm=
|
||||
if ! [[ -f "${ftbInstaller}" ]]; then
|
||||
if [ "$(uname -m)" == "aarch64" ]; then
|
||||
|
|
Loading…
Reference in a new issue