You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2015/06/17 23:32:28 UTC

git commit: [flex-asjs] [refs/heads/develop] - Fix the other batch files so that they work correctly on windows

Repository: flex-asjs
Updated Branches:
  refs/heads/develop bed1cd5eb -> dd0dedef5


Fix the other batch files so that they work correctly on windows


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/dd0dedef
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/dd0dedef
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/dd0dedef

Branch: refs/heads/develop
Commit: dd0dedef5b9374c37462441dc4af3e13bea4cb3f
Parents: bed1cd5
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Wed Jun 17 14:32:00 2015 -0700
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Wed Jun 17 14:32:00 2015 -0700

----------------------------------------------------------------------
 js/bin/compc.bat | 4 ++--
 js/bin/jsc.bat   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/dd0dedef/js/bin/compc.bat
----------------------------------------------------------------------
diff --git a/js/bin/compc.bat b/js/bin/compc.bat
index 58d8a39..f35c335 100644
--- a/js/bin/compc.bat
+++ b/js/bin/compc.bat
@@ -22,8 +22,8 @@ rem compc.bat script to launch falcon-compc.jar in Windows Command Prompt.
 rem On OSX, Unix, or Cygwin, use the compc shell script instead.
 rem
 
-if "x%FALCON_HOME%"=="x"  (set FALCON_HOME=%~dp0..\..) else echo Using Falcon codebase: %FALCON_HOME%
+if "x%FALCON_HOME%"=="x"  (set "FALCON_HOME=%~dp0..\..") else echo Using Falcon codebase: %FALCON_HOME%
 
-if "x%FLEX_HOME%"=="x" (set FLEX_HOME=%~dp0..\..) else echo Using Flex SDK: %FLEX_HOME%
+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%\js\lib\compc.jar" -js-output-type=FLEXJS -sdk-js-lib="%FLEX_HOME%\frameworks\js\FlexJS\src" %*
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/dd0dedef/js/bin/jsc.bat
----------------------------------------------------------------------
diff --git a/js/bin/jsc.bat b/js/bin/jsc.bat
index 830c11f..c1ec218 100644
--- a/js/bin/jsc.bat
+++ b/js/bin/jsc.bat
@@ -22,8 +22,8 @@ rem mxmlc.bat script to launch falcon-mxmlc.jar in Windows Command Prompt.
 rem On OSX, Unix, or Cygwin, use the mxmlc shell script instead.
 rem
 
-if "x%FALCON_HOME%"=="x"  (set FALCON_HOME=%~dp0..\..) else echo Using Falcon codebase: %FALCON_HOME%
+if "x%FALCON_HOME%"=="x"  (set "FALCON_HOME=%~dp0..\..") else echo Using Falcon codebase: %FALCON_HOME%
 
-if "x%FLEX_HOME%"=="x" (set FLEX_HOME=%~dp0..\..) else echo Using Flex SDK: %FLEX_HOME%
+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%\js\lib\mxmlc.jar" -js-output-type=FLEXJS -external-library-path="%FLEX_HOME%\js\libs\temp\externals\bin\JS.swc" %*
\ No newline at end of file