try to get compiler.jx scripts to be executable
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/0797bba1 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/0797bba1 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/0797bba1 Branch: refs/heads/develop Commit: 0797bba1b93ab8b86119846e1cc7306361cac15d Parents: 1b0aa55 Author: Alex Harui <[email protected]> Authored: Wed Apr 16 23:20:17 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Wed Apr 16 23:20:17 2014 -0700 ---------------------------------------------------------------------- build.xml | 6 ++++++ compiler.jx/build.xml | 2 ++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0797bba1/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 70af1ee..6ce3256 100644 --- a/build.xml +++ b/build.xml @@ -356,6 +356,7 @@ <exclude name="compiler/generated/dist/sdk/bin/**"/> <exclude name="compiler/generated/dist/sdk/bin-legacy/**"/> <exclude name="compiler/commandline/**"/> + <exclude name="compiler.jx/bin/**"/> <exclude name="**/assets/**"/> <exclude name="**/*.fla"/> <exclude name="**/*.flv"/> @@ -371,6 +372,11 @@ <fixcrlf srcdir="${basedir}/temp/compiler/commandline" eol="crlf" fixlast="false"> <include name="**.bat"/> </fixcrlf> + <fixcrlf srcdir="${basedir}/temp/compiler.jx/bin" eol="crlf" fixlast="false"> + <include name="**.bat"/> + </fixcrlf> + <chmod dir="${basedir}/temp/compiler/commandline" excludes="**/*.bat" perm="+x" /> + <chmod dir="${basedir}/temp/compiler.jx/bin" excludes="**/*.bat" perm="+x" /> <!-- Unix shell scripts need the correct line endings. http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0797bba1/compiler.jx/build.xml ---------------------------------------------------------------------- diff --git a/compiler.jx/build.xml b/compiler.jx/build.xml index 7d53854..e47c8e0 100644 --- a/compiler.jx/build.xml +++ b/compiler.jx/build.xml @@ -116,6 +116,8 @@ </filelist> </copy> + <chmod dir="${basedir}/bin" excludes="**/*.bat" perm="+x" /> + <antcall target="clean" /> </target>
