* make sure JavaApplicationStub is executable (chmod +x) when building the osx app bundle

This commit is contained in:
Reinhard Pointner 2010-10-28 16:32:59 +00:00
parent 8c95bf25d5
commit ac133bcb21
1 changed files with 2 additions and 1 deletions

View File

@ -132,7 +132,8 @@
<!-- application bundle folder as zip -->
<zip destfile="${path.appbundle.zip}">
<fileset dir="${dir.dist}" includes="${title}.app/**" />
<zipfileset dir="${dir.dist}" includes="${title}.app/**" excludes="**/JavaApplicationStub" />
<zipfileset dir="${dir.dist}" includes="${title}.app/**/JavaApplicationStub" filemode="744" /> <!-- application stub must be executable!! -->
</zip>
</target>