Skip to content

Commit

Permalink
Update steamcmd.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
SturdyStubs authored Aug 10, 2024
1 parent 004bc12 commit 68be4cb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions games/carbon/helpers/steamcmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand All @@ -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
}

0 comments on commit 68be4cb

Please sign in to comment.