Upload files to "bin"

This commit is contained in:
2026-03-10 02:30:26 -04:00
parent da9e6f29c7
commit 07334f2226
2 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ fi
if [ "${BL_UNZIP_ADDONS:-0}" -eq 1 ]; then
echo "Processing Add-Ons zips..."
cd "$HOME/Add-Ons" || exit 1
cd /home/container/Add-Ons || exit 1
for zip in *.zip; do
[ -f "$zip" ] || continue

View File

@@ -33,7 +33,7 @@ fi
if [ "${BL_UNZIP_ADDONS:-0}" -eq 1 ]; then
echo "Processing Add-Ons zips..."
cd "$HOME/Add-Ons" || exit 1
cd /home/container/Add-Ons || exit 1
for zip in *.zip; do
[ -f "$zip" ] || continue
@@ -71,8 +71,8 @@ if [ "${BL_UNZIP_ADDONS:-0}" -eq 1 ]; then
done
fi
# Ensure we're in the correct directory
cd "$HOME" || exit 1
# Ensure we're in the correct directory (server root where Blockland.exe lives)
cd /home/container || exit 1
if [ ! -f "Blockland.exe" ]; then
echo "Blockland.exe not found!"