Browse Source

Fix build script directory permissions

pull/9/head v0.1.0-beta
Toby Zerner 9 years ago
parent
commit
f667d9f22c
  1. 3
      build.sh

3
build.sh

@ -80,7 +80,8 @@ done
# Finally, create the release archive
cd ${release}
chmod -R 0644 *
find . -type d -exec chmod 0750 {} +
find . -type f -exec chmod 0644 {} +
chmod 0775 .
chmod -R 0775 assets flarum/storage
zip -r release.zip ./

Loading…
Cancel
Save