fix dir error
Some checks failed
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 12s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 54s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 1m0s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 1m9s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Failing after 53s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 1m3s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 2m5s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Has been skipped
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Has been skipped

This commit is contained in:
2025-12-20 08:18:12 -08:00
parent ddf6461d89
commit 0a79d283d3
6 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ if [ -e $MC_DIR/craftbukkit-$MC_VERSION.jar ]
echo "WARNING ! craftbukkit-$MC_VERSION.jar is out of date/missing ... will download now."
echo " "
echo "INFO ! Cleaning old files."
mkdir $MC_DIR/old-server-versions/
mkdir -p $MC_DIR/old-server-versions/
mv $MC_DIR/craftbukkit-*.sh $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $INSTALLER_FILE -O $MC_DIR/craftbukkit-$MC_VERSION.jar
chmod +x $MC_DIR/craftbukkit-$MC_VERSION.jar

View File

@@ -21,7 +21,7 @@ if [ -e $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar ]
echo "WARNING ! fabric-$MC_VERSION-$FABRIC_VERSION.jar is out of date/missing ... will download now."
echo " "
echo "INFO ! Cleaning old files."
mkdir $MC_DIR/old-server-versions
mkdir -p $MC_DIR/old-server-versions
mv $MC_DIR/fabric-*-*.jar $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $SERVER_FILE -O $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar
chmod +x $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar

View File

@@ -22,7 +22,7 @@ if [ -e $MC_DIR/forge-$MC_VERSION-$FORGE_VERSION-installer.jar ]
echo " "
echo "INFO ! Cleaning old files."
cd $MC_DIR
mkdir /old-server-versions/
mkdir -p /old-server-versions/
mv neoforge-*.jar old-server-versions/
mv run-*.sh old-server-versions/
mv /libraries /libraries_OLD

View File

@@ -21,7 +21,7 @@ if [ -e $MC_DIR/neoforge-$NEOFORGED_VERSION-installer.jar ]
echo " "
echo "INFO ! Cleaning old files."
cd $MC_DIR
mkdir /old-server-versions/
mkdir -p /old-server-versions/
mv neoforge-*.jar old-server-versions/
mv run-*.sh old-server-versions/
mv /libraries /libraries_OLD

View File

@@ -21,7 +21,7 @@ if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ]
echo "WARNING ! MCserver-$MC_VERSION.jar is out of date/missing ... will download now."
echo " "
echo "INFO ! Cleaning old files."
mkdir $MC_DIR/old-server-versions/
mkdir -p $MC_DIR/old-server-versions/
mv $MC_DIR/MCserver-*.jar $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_SERVER_FILE -O $MC_DIR/MCserver-$MC_VERSION.jar
chmod +x $MC_DIR/MCserver-$MC_VERSION.jar

View File

@@ -21,7 +21,7 @@ if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ]
echo "WARNING ! MCserver-$MC_VERSION.jar is out of date/missing ... will download now."
echo " "
echo "INFO ! Cleaning old files."
mkdir $MC_DIR/old-server-versions/
mkdir -p $MC_DIR/old-server-versions/
mv $MC_DIR/MCserver-*.jar $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_SERVER_FILE -O $MC_DIR/MCserver-$MC_VERSION.jar
chmod +x $MC_DIR/MCserver-$MC_VERSION.jar