From 8053925a39dc2819819411fc28b554a032e8955c Mon Sep 17 00:00:00 2001 From: SturdyStubs Date: Wed, 14 Aug 2024 12:53:20 +0200 Subject: [PATCH] exit 0 instead of 1 --- games/carbon/sections/auto_update_validate.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/games/carbon/sections/auto_update_validate.sh b/games/carbon/sections/auto_update_validate.sh index 43ec8ae..86aec5a 100644 --- a/games/carbon/sections/auto_update_validate.sh +++ b/games/carbon/sections/auto_update_validate.sh @@ -42,9 +42,8 @@ if [[ "${DOWNLOAD_METHOD}" == "Depot Downloader" ]]; then unzip DepotDownloader.zip -d /home/container # Navigate to the DepotDownloader directory rm -rf /tmp/* - chmod +x /home/container/DepotDownloader Info "DepotDownloader installation completed successfully. We need to restart your system in order to complete the install..." - exit 1 + exit 0 fi fi @@ -58,7 +57,6 @@ else mkdir -p /home/containersteamapps # Fix steamcmd disk write error when this folder is missing # SteamCMD fails otherwise for some reason, even running as root. # This is changed at the end of the install process anyways. - chown +x /home/container/steamcmd echo "SteamCMD installation completed successfully." fi