From 4cd972d93de69dcc84434724182116b3a3a48ce4 Mon Sep 17 00:00:00 2001 From: James Ives Date: Thu, 19 Sep 2024 13:11:26 -0400 Subject: [PATCH] Fix: Ensure existing files are updated accordingly. --- container/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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