Used versionLessThan to simplify buildSpigotFromSource check

This commit is contained in:
Geoff Bourne 2020-05-11 18:54:28 -05:00
parent 89fa3ff8fe
commit d24690ab8c

View file

@ -20,14 +20,7 @@ function buildSpigotFromSource {
cat /data/spigot_build.log cat /data/spigot_build.log
exit 1 exit 1
fi fi
if [ $VANILLA_VERSION != "1.15.2" -a \ if versionLessThan "1.14"; then
$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} mv craftbukkit-*.jar /data/${SERVER}
fi fi
log "Cleaning up" log "Cleaning up"