This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # This script updates the Corekeeper server if a new version is available | |
| function get_version() { | |
| # Get the latest version of the game | |
| STEAM_GAME_VERSION=$(/usr/games/steamcmd +login anonymous +app_info_update 0 +app_info_print "1963720" +quit | \ | |
| grep -EA 50 "\"branches\"" | grep -EA 5 "\"public\"" | \ | |
| grep -E "\"buildid\"" | awk -F '"' '{print $4}') |