Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
fix steamcmd url
Browse files Browse the repository at this point in the history
  • Loading branch information
ripps818 committed Feb 15, 2024
1 parent cdaacbf commit 100defc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ fi

# Install steamcmd executable
if [ ! -f "${steamcmd_exe}" ]; then
steamcmd_url="https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip"
steamcmd_url="http://media.steampowered.com/installer/steamcmd.zip"
printf "\e[0;32m%s\e[0m\n" "Downloading SteamCmd for Windows"
curl -fsSLO ${steamcmd_url} > /app/steamcmd.zip
unzip /app/steamcmd.zip* -d /app
rm -rf /appsteamcmd.zip*
curl -fs "${steamcmd_url}" -o /app/steamcmd.zip
unzip /app/steamcmd.zip -d /app
rm -rf /appsteamcmd.zip
fi

# Install Visual C++ Runtime
Expand Down

0 comments on commit 100defc

Please sign in to comment.