mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-25 19:56:24 +01:00
43 lines
1.0 KiB
Bash
43 lines
1.0 KiB
Bash
# SubCreator SpongeVanilla Build Script
|
|
#
|
|
#!/usr/bin/env bash
|
|
if [[ -z "$sp_version" ]]
|
|
then
|
|
echo ERROR: No Build Version Supplied
|
|
rm -Rf "$0"
|
|
exit 1
|
|
fi
|
|
function __DL() {
|
|
if [[ -x "$(command -v wget)" ]]; then
|
|
wget -O "$1" "$2"; return $?
|
|
else
|
|
curl -Lo "$1" "$2"; return $?
|
|
fi
|
|
}
|
|
function __Restore() {
|
|
if [[ -f "Sponge.old.jar.x" ]]; then
|
|
if [[ -f "Sponge.jar" ]]; then
|
|
rm -Rf Sponge.jar
|
|
fi
|
|
mv Sponge.old.jar.x Sponge.jar
|
|
fi
|
|
}
|
|
echo Downloading SpongeVanilla...
|
|
if [[ -f "Sponge.jar" ]]; then
|
|
if [[ -f "Sponge.old.jar.x" ]]; then
|
|
rm -Rf Sponge.old.jar.x
|
|
fi
|
|
mv Sponge.jar Sponge.old.jar.x
|
|
fi
|
|
__DL Sponge.jar "https://repo.spongepowered.org/maven/org/spongepowered/spongevanilla/$sp_version/spongevanilla-$sp_version.jar"; __RETURN=$?
|
|
if [[ $__RETURN -eq 0 ]]; then
|
|
echo Cleaning Up...
|
|
rm -Rf "$0"
|
|
exit 0
|
|
else
|
|
echo ERROR: Failed downloading Sponge. Is SpongePowered.org down?
|
|
__Restore
|
|
rm -Rf "$0"
|
|
exit 3
|
|
fi
|
|
exit 2 |