Repository: flex-falcon Updated Branches: refs/heads/develop d71c431cf -> 9f31b8793
fixed wrong double-quote characters and variable reference in .bat files. Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/94544954 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/94544954 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/94544954 Branch: refs/heads/develop Commit: 945449549ed91914193db852e17014cafb440c5d Parents: d71c431 Author: Andy Dufilie <[email protected]> Authored: Wed Jan 13 09:29:37 2016 -0500 Committer: Andy Dufilie <[email protected]> Committed: Wed Jan 13 09:29:37 2016 -0500 ---------------------------------------------------------------------- compiler.jx/bin/asjsc | 2 +- compiler.jx/bin/asjsc.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/94544954/compiler.jx/bin/asjsc ---------------------------------------------------------------------- diff --git a/compiler.jx/bin/asjsc b/compiler.jx/bin/asjsc index e03bb08..6c65155 100755 --- a/compiler.jx/bin/asjsc +++ b/compiler.jx/bin/asjsc @@ -67,4 +67,4 @@ fi VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false " -java $VMARGS $D32 $SETUP_SH_VMARGS -Dflexcompiler="$FALCON_HOME" -Dflexlib="$FLEX_HOME/frameworks" -jar "$SCRIPT_HOME/../lib/mxmlc.jar" +flexlib="$FLEX_HOME/frameworks" -external-library-path="$SCRIPT_HOME/../libs/JS.swcâ "$@" +java $VMARGS $D32 $SETUP_SH_VMARGS -Dflexcompiler="$FALCON_HOME" -Dflexlib="$FLEX_HOME/frameworks" -jar "$SCRIPT_HOME/../lib/mxmlc.jar" +flexlib="$FLEX_HOME/frameworks" -external-library-path="$SCRIPT_HOME/../libs/JS.swc" "$@" http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/94544954/compiler.jx/bin/asjsc.bat ---------------------------------------------------------------------- diff --git a/compiler.jx/bin/asjsc.bat b/compiler.jx/bin/asjsc.bat index dda17aa..041fbcf 100644 --- a/compiler.jx/bin/asjsc.bat +++ b/compiler.jx/bin/asjsc.bat @@ -26,4 +26,4 @@ if "x%FALCON_HOME%"=="x" (set FALCON_HOME=%~dp0..) else echo Using Falcon codeb if "x%FLEX_HOME%"=="x" (set FLEX_HOME=%~dp0..) else echo Using Flex SDK: %FLEX_HOME% -@java -Dsun.io.useCanonCaches=false -Xms32m -Xmx512m -Dflexcompiler="%FALCON_HOME%" -Dflexlib="%FLEX_HOME%\frameworks" -jar "%FALCON_HOME%\lib\mxmlc.jar" -external-library-path="$FALCON_HOME\libs\JS.swcâ %* \ No newline at end of file +@java -Dsun.io.useCanonCaches=false -Xms32m -Xmx512m -Dflexcompiler="%FALCON_HOME%" -Dflexlib="%FLEX_HOME%\frameworks" -jar "%FALCON_HOME%\lib\mxmlc.jar" -external-library-path="%FALCON_HOME%\libs\JS.swc" %* \ No newline at end of file
