diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2015-03-09 21:18:18 +0100 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2015-03-09 21:18:18 +0100 |
commit | 0d17f6aeab217192675591b771f472802ae52e3d (patch) | |
tree | b77af745da49ee4c183225724c6164c0d2ad5807 | |
parent | 5a5a0acd3b2fc94993ca5e207004492fff839b51 (diff) |
Fix output permissions after mac build
-rwxr-xr-x | makeicecat | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -468,6 +468,10 @@ mkisofs -D -V "\$6" -no-pad -R -apple -o /tmp/icecat-uncompressed.dmg -path-list dmg dmg /tmp/icecat-uncompressed.dmg \$4 rm /tmp/icecat-uncompressed.dmg + +find . -executable -exec chmod 755 {} \; +find . ! -executable -exec chmod 644 {} \; +find . -type d -exec chmod 755 {} \; EOF ############################################################################### |