[CI-SKIP] Fix build script for version detection

Apparently grep was being greedy even when it shouldn't.
This ensures it doesn't be too greedy.
This commit is contained in:
Aikar 2018-10-16 23:55:54 -04:00
parent 52ae2a1aec
commit dcc764db21
No known key found for this signature in database
GPG Key ID: 401ADFC9891FAAFE
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ versionjson="$workdir/Minecraft/$minecraftversion/$minecraftversion.json"
if [ ! -f "$versionjson" ]; then
echo "Downloading $minecraftversion JSON Data"
verescaped=$(echo ${minecraftversion} | sed 's/\./\\./g')
verentry=$(curl -s "https://launchermeta.mojang.com/mc/game/version_manifest.json" | grep -oE "{\"id\": \"${verescaped}\".*?\.json")
verentry=$(curl -s "https://launchermeta.mojang.com/mc/game/version_manifest.json" | grep -oE "{\"id\": \"${verescaped}\".*?${verescaped}\.json")
jsonurl=$(echo $verentry | grep -oE https:\/\/.*?\.json)
curl -o "$versionjson" "$jsonurl"
echo "$versionjson - $jsonurl"