mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-13 05:42:28 +00:00
parent
3052cd1155
commit
b9f247728f
1 changed files with 11 additions and 1 deletions
|
@ -60,10 +60,20 @@ function downloadSpigot {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
curl -o /tmp/versions -sSL https://getspigot.org/api/getversions
|
curl -o /tmp/versions -sSL https://getspigot.org/api/getversions
|
||||||
|
status=$?
|
||||||
|
if [ $status != 0 ]; then
|
||||||
|
echo "ERROR: failed to access Spigot versions (curl error code was $status)"
|
||||||
|
exit 3
|
||||||
|
fi
|
||||||
downloadUrl=$(cat /tmp/versions | jq -r ".[] | select(.version == \"$match\") | .downloadUrl")
|
downloadUrl=$(cat /tmp/versions | jq -r ".[] | select(.version == \"$match\") | .downloadUrl")
|
||||||
if [[ -n $downloadUrl ]]; then
|
if [[ -n $downloadUrl ]]; then
|
||||||
echo "Downloading $match"
|
echo "Downloading $match"
|
||||||
curl -o $SERVER -sSL "$downloadUrl"
|
curl -o $SERVER -sSL "x$downloadUrl"
|
||||||
|
status=$?
|
||||||
|
if [ $status != 0 ]; then
|
||||||
|
echo "ERROR: failed to download from $downloadUrl due to (curl error code was $status)"
|
||||||
|
exit 3
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo "ERROR: Version $VANILLA_VERSION is not supported for $TYPE"
|
echo "ERROR: Version $VANILLA_VERSION is not supported for $TYPE"
|
||||||
echo " Refer to http://getspigot.org for supported versions"
|
echo " Refer to http://getspigot.org for supported versions"
|
||||||
|
|
Loading…
Reference in a new issue