update
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 29s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 17s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 19s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push quilt (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 27s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 6s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 21s
Build and Push Minecraft Docker Images on Debian-base update / Docker prune (vm-docker-build2) (push) Successful in 3s
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 29s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 17s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 19s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push quilt (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 27s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 6s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 21s
Build and Push Minecraft Docker Images on Debian-base update / Docker prune (vm-docker-build2) (push) Successful in 3s
This commit is contained in:
@@ -20,7 +20,7 @@ BUKKIT_INSTALLER_FILE=https://cdn.getbukkit.org/craftbukkit/craftbukkit-$MC_VERS
|
||||
MC_BUKKIT_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/bukkit/run.sh
|
||||
|
||||
# Install java
|
||||
if [ "$JAVA_TYPE" = "openjdk" ]; then
|
||||
if [ $JAVA_TYPE = "openjdk" ]; then
|
||||
echo "INFO ! openjdk selected"
|
||||
if dpkg -s openjdk-$JAVA_VERSION-jre-headless &> /dev/null
|
||||
then
|
||||
@@ -32,7 +32,7 @@ if [ "$JAVA_TYPE" = "openjdk" ]; then
|
||||
apt-get --no-install-recommends -y install openjdk-$JAVA_VERSION-jre-headless
|
||||
fi
|
||||
|
||||
elif [ "$JAVA_TYPE" = "msopenjdk" ]; then
|
||||
elif [ $JAVA_TYPE = "msopenjdk" ]; then
|
||||
echo "INFO ! msopenjdk selected"
|
||||
if dpkg -s msopenjdk-$JAVA_VERSION &> /dev/null
|
||||
then
|
||||
@@ -53,7 +53,7 @@ fi
|
||||
|
||||
# Main install (Debian).
|
||||
# Check for server files and download if needed.
|
||||
if [ "$MC_TYPE" = "vanilla" ]; then
|
||||
if [ $MC_TYPE = "vanilla" ]; then
|
||||
echo "INFO ! Vanilla Selected"
|
||||
if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ]
|
||||
then
|
||||
@@ -82,7 +82,7 @@ if [ "$MC_TYPE" = "vanilla" ]; then
|
||||
chmod +x $MC_DIR/run-$MC_VERSION.sh
|
||||
fi
|
||||
|
||||
elif [ "$MC_TYPE" = "forge" ]; then
|
||||
elif [ $MC_TYPE = "forge" ]; then
|
||||
echo "INFO ! Forge Selected"
|
||||
if [ -e $MC_DIR/forge-$MC_VERSION-$FORGE_VERSION-installer.jar ]
|
||||
then
|
||||
@@ -107,7 +107,7 @@ elif [ "$MC_TYPE" = "forge" ]; then
|
||||
cd ..
|
||||
fi
|
||||
|
||||
elif [ "$MC_TYPE" = "neoforged" ]; then
|
||||
elif [ $MC_TYPE = "neoforged" ]; then
|
||||
echo "INFO ! Neoforged Selected"
|
||||
if [ -e $MC_DIR/neoforge-$NEOFORGED_VERSION-installer.jar ]
|
||||
then
|
||||
@@ -132,7 +132,7 @@ elif [ "$MC_TYPE" = "neoforged" ]; then
|
||||
cd ..
|
||||
fi
|
||||
|
||||
elif [ "$MC_TYPE" = "fabric" ]; then
|
||||
elif [ $MC_TYPE = "fabric" ]; then
|
||||
echo "INFO ! Fabric Selected"
|
||||
if [ -e $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar ]
|
||||
then
|
||||
@@ -161,7 +161,7 @@ elif [ "$MC_TYPE" = "fabric" ]; then
|
||||
chmod +x $MC_DIR/run-$MC_VERSION.sh
|
||||
fi
|
||||
|
||||
elif [ "$MC_TYPE" = "quilt" ]; then
|
||||
elif [ $MC_TYPE = "quilt" ]; then
|
||||
echo "INFO ! Quilt Selected"
|
||||
if [ -e $MC_DIR/quilt-installer-$QUILT_VERSION.jar ]
|
||||
then
|
||||
@@ -199,7 +199,7 @@ elif [ "$MC_TYPE" = "quilt" ]; then
|
||||
chmod +x $MC_DIR/run-$MC_VERSION.sh
|
||||
fi
|
||||
|
||||
elif [ "$MC_TYPE" = "bukkit" ]; then
|
||||
elif [ $MC_TYPE = "bukkit" ]; then
|
||||
echo "INFO ! Bukkit Selected"
|
||||
if [ -e $MC_DIR/craftbukkit-$MC_VERSION.jar ]
|
||||
then
|
||||
|
||||
Reference in New Issue
Block a user