Skip to content

Commit

Permalink
Merge pull request '1.0.5' (#11) from develop into main
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMeeb committed May 5, 2024
2 parents ab7dc07 + 08c76e9 commit a515ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions root/container-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ echo "Checking permissions in /config and /app."
if [ -n "$(find /app \! -user ${PUID})" ] || [ -n "$(find /app \! -group ${PGID})" ]
then
echo "Fixing permissions for /app (this can take some time)."
chown -R cronicle:cronicle /app
chown -R cronicle:cronicle /app || true
fi

if [ -n "$(find /config \! -user ${PUID})" ] || [ -n "$(find /config \! -group ${PGID})" ]
then
echo "Fixing permissions for /config (this can take some time)."
chown -R cronicle:cronicle /config
chown -R cronicle:cronicle /config || true
fi

0 comments on commit a515ba8

Please sign in to comment.