Compare commits

..

3 Commits

Author SHA1 Message Date
30996cccfe Merge pull request '1.0.5' (#11) from develop into main
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Reviewed-on: #11
2024-05-05 17:15:49 +00:00
0c88445407 Merge branch 'main' into develop
All checks were successful
continuous-integration/drone/push Build is passing
2024-05-05 17:11:35 +00:00
ce8bc4a03d Ignore outcome of chown /app & /config
All checks were successful
continuous-integration/drone Build is passing
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