From 68be4cb09cac4abd6d59ed0a521dfebe848619d0 Mon Sep 17 00:00:00 2001 From: SturdyStubs Date: Sat, 10 Aug 2024 22:13:26 +0200 Subject: [PATCH] Update steamcmd.sh --- games/carbon/helpers/steamcmd.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/games/carbon/helpers/steamcmd.sh b/games/carbon/helpers/steamcmd.sh index 94e3bb2..3495318 100644 --- a/games/carbon/helpers/steamcmd.sh +++ b/games/carbon/helpers/steamcmd.sh @@ -68,19 +68,19 @@ function DepotDownloader_Validate() { if [[ "${FRAMEWORK}" == *"aux1"* ]]; then Delete_SteamApps_Directory Info "Downloading Aux1 Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux01 -validate -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux01 -validate -username anonymous elif [[ "${FRAMEWORK}" == *"aux2"* ]]; then Delete_SteamApps_Directory Info "Downloading Aux2 Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux02 -validate -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux02 -validate -username anonymous elif [[ "${FRAMEWORK}" == *"staging"* ]]; then Delete_SteamApps_Directory Info "Downloading Staging Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta staging -validate -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta staging -validate -username anonymous else Delete_SteamApps_Directory Info "Downloading Default Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -validate -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -validate -username anonymous fi } @@ -91,18 +91,18 @@ function DepotDownloader_No_Validation() { if [[ "${FRAMEWORK}" == *"aux1"* ]]; then Delete_SteamApps_Directory Info "Downloading Aux1 Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux01 -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux01 -username anonymous elif [[ "${FRAMEWORK}" == *"aux2"* ]]; then Delete_SteamApps_Directory Info "Downloading Aux2 Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux02 -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta aux02 -username anonymous elif [[ "${FRAMEWORK}" == *"staging"* ]]; then Delete_SteamApps_Directory Info "Downloading Staging Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta staging -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -beta staging -username anonymous else Delete_SteamApps_Directory Info "Downloading Default Files - Validation On!" - dotnet DepotDownloader.dll -dir /home/container -app 258550 -depot 258552 -depot 258554 -username anonymous + ./DepotDownloader -dir /home/container -app 258550 -depot 258552 -depot 258554 -username anonymous fi }