From c572c9516185050d21eb7759391c71ff37c657c5 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 27 Feb 2021 16:58:25 -0600 Subject: [PATCH] Ensure FTBA version.json is readable #784 --- start-deployFTBA | 3 +++ 1 file changed, 3 insertions(+) diff --git a/start-deployFTBA b/start-deployFTBA index 19800f9a..38fae975 100644 --- a/start-deployFTBA +++ b/start-deployFTBA @@ -43,6 +43,9 @@ if ! [ -f "${ftbInstallMarker}" ] || [ $(cat "${ftbInstallMarker}") != "${FTB_MO echo "${FTB_MODPACK_ID}=${FTB_MODPACK_VERSION_ID}" > ${ftbInstallMarker} writeEula + + # some modpacks result in --w----r-- permissions + chmod a+r version.json else log "FTB modpack ID ${FTB_MODPACK_ID}, version ID ${FTB_MODPACK_VERSION_ID} is ready to go" fi