Files
minecraft/testing/test.sh
fithwum b39e4d6474
All checks were successful
Build and Push Minecraft Docker Images / build (push) Successful in 2m28s
repository update
2025-07-04 12:32:15 -07:00

12 lines
486 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2023 fithwum
# All rights reserved
MC_VERSION="1.14.4"
VERSION_CHECK=$(curl -s "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json" | grep -Pom 1 '"url": "\K[^"]*'$MC_VERSION'.json')
MC_SERVER_FILE=$(curl -s $VERSION_CHECK | jq --raw-output '.downloads.server.url')
echo "Server url: $MC_SERVER_FILE"
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_SERVER_FILE -O /mnt/Other/Dockers/minecraft/testing/server-$MC_VERSION.jar