From b27556e1eb2d64551bce0b5d56820332cd9631d1 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Tue, 3 May 2022 17:42:13 -0500 Subject: [PATCH] Fix invalid -s arg with TYPE=FORGE (#1501) --- scripts/start-deployForge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-deployForge b/scripts/start-deployForge index c61def5d..abd9e840 100755 --- a/scripts/start-deployForge +++ b/scripts/start-deployForge @@ -110,7 +110,7 @@ resolve_versions() { ;; RECOMMENDED) - if ! FORGE_VERSION=$(get -s --json-path ".promos['$VANILLA_VERSION-recommended']" --json-value-when-missing "" "$promosUrl"); then + if ! FORGE_VERSION=$(get --json-path ".promos['$VANILLA_VERSION-recommended']" --json-value-when-missing "" "$promosUrl"); then if ! FORGE_VERSION=$(get --json-path ".promos['$VANILLA_VERSION-latest']" --json-value-when-missing "" "$promosUrl"); then log "ERROR: Version $VANILLA_VERSION is not supported by Forge" log " Refer to http://files.minecraftforge.net/ for supported versions"