Skip to content

Commit

Permalink
Fix: Ensure existing files are updated accordingly. (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves authored Sep 19, 2024
1 parent 5489b98 commit d2659e8
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 d2659e8

Please sign in to comment.