From dba2556e4eb5ab0cb3ab2da74d56b7e97c409b74 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 20 Aug 2023 13:00:06 -0500 Subject: [PATCH] Corrected use of VERSION when building Bukkit from source (#2341) --- scripts/start-deployBukkitSpigot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-deployBukkitSpigot b/scripts/start-deployBukkitSpigot index cfc1396c..fed6c201 100755 --- a/scripts/start-deployBukkitSpigot +++ b/scripts/start-deployBukkitSpigot @@ -21,7 +21,7 @@ function buildSpigotFromSource { logn '' curl -sSL -o /data/temp/BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar && \ - java $jvmOpts -jar /data/temp/BuildTools.jar --rev $VANILLA_VERSION 2>&1 |tee /data/spigot_build.log| while read l; do echo -n .; done; log "done" + java $jvmOpts -jar /data/temp/BuildTools.jar --rev "$VERSION" 2>&1 |tee /data/spigot_build.log| while read l; do echo -n .; done; log "done" case ${TYPE^^} in SPIGOT)