Last active 1741880082

update.sh Raw
1#!/bin/bash
2APP_ID=
3if test -f "update.lock"; then
4 echo "update.lock found, cancelling"
5 exit 1
6fi
7touch update.lock
8trap '{ rm -f -- "update.lock"; }' EXIT
9/home/steam/steamcmd/steamcmd.sh +login anonymous +force_install_dir $PWD +app_update $APP_ID validate +quit
10rm update.lock
11