diff --git a/container/entrypoint.sh b/container/entrypoint.sh index 70a0436..b8342a6 100644 --- a/container/entrypoint.sh +++ b/container/entrypoint.sh @@ -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