You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/12/12 06:30:30 UTC

[royale-asjs] 02/02: JSOnly configs won't have a bin-debug folder but have to create the bin/js-debug folder first

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 6270e882cb5b73fbec04729e563596b4ba431cf0
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Dec 11 22:30:03 2019 -0800

    JSOnly configs won't have a bin-debug folder but have to create the bin/js-debug folder first
---
 examples/mxroyale/tourdeflexmodules/build.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/mxroyale/tourdeflexmodules/build.xml b/examples/mxroyale/tourdeflexmodules/build.xml
index 8ee0f7c..0b65f6a 100644
--- a/examples/mxroyale/tourdeflexmodules/build.xml
+++ b/examples/mxroyale/tourdeflexmodules/build.xml
@@ -90,6 +90,7 @@
          <attribute name="relmap"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
    			<mxmlc file="${basedir}/src/@{folder}@{example}.mxml" debug="${debug_flag}"
             	output="${basedir}/bin-debug/@{folder}@{example}.swf"
                 fork="true" failonerror="true">
@@ -111,6 +112,7 @@
         <attribute name="folder"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
             <mxmlc file="${basedir}/src/@{folder}@{example}.mxml" debug="${debug_flag}"
                 output="${basedir}/bin-debug/@{folder}@{example}.swf"
                 fork="true" failonerror="true">
@@ -133,6 +135,7 @@
     	 <attribute name="locales" default="en_US"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
    			<mxmlc file="${basedir}/src/@{example}.mxml"
             	output="${basedir}/src/@{example}.swf" fork="true" failonerror="true">
    				<locale>en_US</locale>