add target for testing while pulling config file from network
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/bf3513c9 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/bf3513c9 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/bf3513c9 Branch: refs/heads/develop Commit: bf3513c9a4724aaeae991b16a517682dc4b904f7 Parents: 6a4142a Author: Alex Harui <[email protected]> Authored: Fri Jan 17 06:34:02 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Fri Jan 17 06:34:02 2014 -0800 ---------------------------------------------------------------------- installer/build.xml | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bf3513c9/installer/build.xml ---------------------------------------------------------------------- diff --git a/installer/build.xml b/installer/build.xml index a029109..6ac40fb 100644 --- a/installer/build.xml +++ b/installer/build.xml @@ -555,4 +555,13 @@ </exec> </target> + <target name="debug-for-real" > + <copy file="${SOURCE_DIR}/${APP_NAME}-app.xml" todir="${BUILD_DIR}" /> + <mkdir dir="${BUILD_DIR}/installer" /> + <exec executable="${AIR_HOME}/bin/${adl}" dir="${BUILD_DIR}" failonerror="true"> + <arg value="-runtime" /> + <arg value="${AIR_HOME}/runtimes/air/${runtime}" /> + <arg value="${BUILD_DIR}/${APP_NAME}-app.xml" /> + </exec> + </target> </project>
