Compare commits

...

3 Commits
1.0.4 ... main

Author SHA1 Message Date
a515ba8eed Merge pull request '1.0.5' (#11) from develop into main
Reviewed-on: #11
2024-05-05 17:15:49 +00:00
08c76e9509 Merge branch 'main' into develop 2024-05-05 17:11:35 +00:00
57e2cce893 Ignore outcome of chown /app & /config 2024-05-05 16:27:40 +00:00

View File

@ -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