Merge pull request #291 from dudymas/master

Fix for custom curseforge modpacks that do not have mods dir
This commit is contained in:
Geoff Bourne 2019-02-15 10:30:52 -06:00 committed by GitHub
commit 72328ca8bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,9 +75,14 @@ if [[ "$MANIFEST" ]]; then
case "X$MANIFEST" in
X*.json)
if [ -f "${MANIFEST}" ]; then
MOD_DIR=${FTB_BASE_DIR:-/data/mods}
MOD_DIR=${FTB_BASE_DIR:-/data}/mods
if [ ! -d "$MOD_DIR" ]
then
echo "Creating mods dir $MOD_DIR"
mkdir -p "$MOD_DIR"
fi
echo "Starting manifest download..."
cat "${MANIFEST}" | jq -r '$.files[] | (.projectID|tostring) + " " + (.fileID|tostring)'| while read -r p f
cat "${MANIFEST}" | jq -r '.files[] | (.projectID|tostring) + " " + (.fileID|tostring)'| while read -r p f
do
if [ ! -f $MOD_DIR/${p}_${f}.jar ]
then