Skip to content

Commit

Permalink
Corrected use of VERSION when building Bukkit from source (#2341)
Browse files Browse the repository at this point in the history
  • Loading branch information
itzg authored Aug 20, 2023
1 parent cdec1c0 commit dba2556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start-deployBukkitSpigot
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dba2556

Please sign in to comment.