Fix permissions of bundled content

This commit is contained in:
Robin Gareus 2022-03-22 21:31:03 +01:00
parent edc94c5213
commit b14acfc3dd
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 8 additions and 0 deletions

View File

@ -743,6 +743,10 @@ if test -n "$MIXBUS"; then
fi
fi
echo "Setting Bundled Media dir/file permissions"
find "${MediaClips}" -type d -exec chmod 755 "{}" \;
find "${MediaClips}" -type f -exec chmod 644 "{}" \;
if true ; then
mkdir -p $APPLIB/LV2

View File

@ -813,6 +813,10 @@ if test -n "$MIXBUS"; then
fi
fi
echo "Setting Bundled Media dir/file permissions"
find "${MediaClips}" -type d -exec chmod 755 "{}" \;
find "${MediaClips}" -type f -exec chmod 644 "{}" \;
################################################################################
if test x$DEMO_SESSION_URL != x ; then