mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 06:12:27 +00:00
fix(minecraft/entrypoint): errata with jq syntax and mod dir
This commit is contained in:
parent
ae72f9ac70
commit
fff075cc68
1 changed files with 2 additions and 2 deletions
|
@ -75,9 +75,9 @@ 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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue