From dd7644daf55a92cf24f3dd4aaa9b029fc5c29247 Mon Sep 17 00:00:00 2001 From: LB Date: Mon, 31 Aug 2026 21:38:44 -0400 Subject: [PATCH] fix: drop extra brace in Forge/NeoForge FORCE_REINSTALL defaults (#4249) Co-authored-by: LCB --- scripts/start-deployForge | 2 +- scripts/start-deployNeoForge | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/start-deployForge b/scripts/start-deployForge index e57b9b16..35548bfa 100755 --- a/scripts/start-deployForge +++ b/scripts/start-deployForge @@ -1,7 +1,7 @@ #!/bin/bash : "${FORGE_VERSION:=${FORGEVERSION:-RECOMMENDED}}" -: "${FORGE_FORCE_REINSTALL:=false}}" +: "${FORGE_FORCE_REINSTALL:=false}" # shellcheck source=start-utils . "${SCRIPTS:-$(dirname "$0")}/start-utils" diff --git a/scripts/start-deployNeoForge b/scripts/start-deployNeoForge index b4fa1067..13307e4e 100755 --- a/scripts/start-deployNeoForge +++ b/scripts/start-deployNeoForge @@ -1,7 +1,7 @@ #!/bin/bash : "${NEOFORGE_VERSION:=latest}" -: "${NEOFORGE_FORCE_REINSTALL:=false}}" +: "${NEOFORGE_FORCE_REINSTALL:=false}" : "${NEOFORGE_INSTALLER:=}" # shellcheck source=start-utils