mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 14:22:27 +00:00
Short hotfix until version helper function is done (#520)
This commit is contained in:
parent
5c0a3a64ab
commit
89fa3ff8fe
1 changed files with 10 additions and 1 deletions
|
@ -20,7 +20,16 @@ function buildSpigotFromSource {
|
||||||
cat /data/spigot_build.log
|
cat /data/spigot_build.log
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
mv craftbukkit-*.jar /data/${SERVER}
|
if [ $VANILLA_VERSION != "1.15.2" -a \
|
||||||
|
$VANILLA_VERSION != "1.15.1" -a \
|
||||||
|
$VANILLA_VERSION != "1.15" -a \
|
||||||
|
$VANILLA_VERSION != "1.14.4" -a \
|
||||||
|
$VANILLA_VERSION != "1.14.3" -a \
|
||||||
|
$VANILLA_VERSION != "1.14.2" -a \
|
||||||
|
$VANILLA_VERSION != "1.14.1" -a \
|
||||||
|
$VANILLA_VERSION != "1.14" ]; then
|
||||||
|
mv craftbukkit-*.jar /data/${SERVER}
|
||||||
|
fi
|
||||||
log "Cleaning up"
|
log "Cleaning up"
|
||||||
rm -rf /data/temp
|
rm -rf /data/temp
|
||||||
cd /data
|
cd /data
|
||||||
|
|
Loading…
Reference in a new issue