installer: updates asjsc Flash Builder launch configurations with correct paths for SDK
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/6ce349d8 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/6ce349d8 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/6ce349d8 Branch: refs/heads/spark Commit: 6ce349d834659fdc3a406c8e0524bce5d0dd7043 Parents: 961b054 Author: Josh Tynjala <[email protected]> Authored: Tue May 17 12:48:31 2016 -0700 Committer: Alex Harui <[email protected]> Committed: Thu May 26 16:04:21 2016 -0700 ---------------------------------------------------------------------- installer.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6ce349d8/installer.xml ---------------------------------------------------------------------- diff --git a/installer.xml b/installer.xml index 50b213b..9070491 100644 --- a/installer.xml +++ b/installer.xml @@ -106,6 +106,10 @@ <os family="windows" /> </condition> <property name="MXMLC" value="mxmlc" /> + <condition property="ASJSC" value="asjsc.bat"> + <os family="windows" /> + </condition> + <property name="ASJSC" value="asjsc" /> <condition property="java.home" value="${env.JAVA_HOME}" > <and> @@ -924,6 +928,22 @@ tofile="${FLEXJS_HOME}/frameworks/themes/Halo/Halo.swc" /> token="$FLEXJS_HOME" value="${FLEXJS_HOME}"/> </replace> + <replace file="${FLEXJS_HOME}/ide/flashbuilder/ASJSC (Debug and Release Build).launch"> + <replacefilter + token="$ASJSC" + value="${ASJSC}"/> + <replacefilter + token="$FLEXJS_HOME" + value="${FLEXJS_HOME}"/> + </replace> + <replace file="${FLEXJS_HOME}/ide/flashbuilder/ASJSC (Debug Build).launch"> + <replacefilter + token="$ASJSC" + value="${ASJSC}"/> + <replacefilter + token="$FLEXJS_HOME" + value="${FLEXJS_HOME}"/> + </replace> <replace file="${FLEXJS_HOME}/js/bin/mxmlc.bat"> <replacefilter token="@java"
