Merge pull request #775 from tcely/patch-5

Remove unnecessary `chmod` executions
This commit is contained in:
meeb 2025-02-26 21:42:57 +11:00 committed by GitHub
commit 3f6da71f67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,12 +13,10 @@ chown -R app:app /config
chmod -R 0755 /config
chown -R root:app /app
chmod -R 0750 /app
chmod 0755 /app/*.py /app/*.sh
find /app -mindepth 2 -type f -execdir chmod 640 '{}' +
chown -R app:app /app/common/static
chmod -R 0750 /app/common/static
chown -R app:app /app/static
chmod -R 0750 /app/static
find /app -type f ! -iname healthcheck.py -exec chmod 640 {} \;
chmod 0755 /app/healthcheck.py
# Optionally reset the download dir permissions
if [ "${TUBESYNC_RESET_DOWNLOAD_DIR:=True}" == "True" ]