Skip to content

Commit

Permalink
Fix: Ensure existing files are updated accordingly.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves committed Sep 19, 2024
1 parent 5489b98 commit 4cd972d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions container/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ fi
# Push mods and config files from their temp directories to the server directories.
if [ -d /temp/mods ]
then
rsync --recursive --chown=steam:steam /temp/mods/* /opt/steam/hlds
rsync --recursive --update --chown=steam:steam /temp/mods/* /opt/steam/hlds
fi

if [ -d /temp/config ]
then
rsync --recursive --chown=steam:steam /temp/config/* /opt/steam/hlds/$GAME
rsync --recursive --update --chown=steam:steam /temp/config/* /opt/steam/hlds/$GAME
fi


Expand Down

0 comments on commit 4cd972d

Please sign in to comment.