Skip to content

Commit

Permalink
fix: recursively push files (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves authored Sep 19, 2024
1 parent 2dce0fa commit 5489b98
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 --chown=steam:steam /temp/mods/* /opt/steam/hlds
rsync --recursive --chown=steam:steam /temp/mods/* /opt/steam/hlds
fi

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


Expand Down

0 comments on commit 5489b98

Please sign in to comment.