You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/01/05 00:33:34 UTC

[1/2] git commit: [flex-falcon] [refs/heads/develop] - Changed `dirname $0` to `dirname "$0"` to support paths containing spaces

Repository: flex-falcon
Updated Branches:
  refs/heads/develop 56c262ab3 -> e2543e084


Changed `dirname $0` to `dirname "$0"` to support paths containing spaces


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

Branch: refs/heads/develop
Commit: 3a809247dc6116aa1eb77a6ab901fba971763481
Parents: fa2f16f
Author: Andy Dufilie <an...@iweave.com>
Authored: Thu Dec 24 15:44:08 2015 -0500
Committer: Andy Dufilie <an...@iweave.com>
Committed: Thu Dec 24 15:57:49 2015 -0500

----------------------------------------------------------------------
 compiler.js/bin/mxmlc           | 2 +-
 compiler.jx/bin/asjsc           | 2 +-
 compiler.jx/bin/compc           | 2 +-
 compiler.jx/bin/mxmlc           | 2 +-
 compiler/commandline/compc      | 4 ++--
 compiler/commandline/mxmlc      | 4 ++--
 compiler/commandline/optimizer  | 2 +-
 compiler/commandline/swcdepends | 4 ++--
 compiler/commandline/swfdump    | 2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler.js/bin/mxmlc
----------------------------------------------------------------------
diff --git a/compiler.js/bin/mxmlc b/compiler.js/bin/mxmlc
index 53a655d..f841431 100755
--- a/compiler.js/bin/mxmlc
+++ b/compiler.js/bin/mxmlc
@@ -25,7 +25,7 @@
 # In Windows Command Prompt, use mxmlc.bat instead.
 #
 
-SCRIPT_HOME=`dirname $0`
+SCRIPT_HOME=`dirname "$0"`
 if [ "x${FALCON_HOME}" = "x" ]
 then
     FALCON_HOME=${SCRIPT_HOME}/../../compiler

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler.jx/bin/asjsc
----------------------------------------------------------------------
diff --git a/compiler.jx/bin/asjsc b/compiler.jx/bin/asjsc
index 0a862af..e03bb08 100755
--- a/compiler.jx/bin/asjsc
+++ b/compiler.jx/bin/asjsc
@@ -27,7 +27,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/../../compiler
 fi
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler.jx/bin/compc
----------------------------------------------------------------------
diff --git a/compiler.jx/bin/compc b/compiler.jx/bin/compc
index eaf59f7..bb48e71 100755
--- a/compiler.jx/bin/compc
+++ b/compiler.jx/bin/compc
@@ -27,7 +27,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/../../compiler
 fi
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler.jx/bin/mxmlc
----------------------------------------------------------------------
diff --git a/compiler.jx/bin/mxmlc b/compiler.jx/bin/mxmlc
index efc970d..9218961 100755
--- a/compiler.jx/bin/mxmlc
+++ b/compiler.jx/bin/mxmlc
@@ -27,7 +27,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/../../compiler
 fi
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler/commandline/compc
----------------------------------------------------------------------
diff --git a/compiler/commandline/compc b/compiler/commandline/compc
index 9f0846a..b7d25e7 100755
--- a/compiler/commandline/compc
+++ b/compiler/commandline/compc
@@ -26,7 +26,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/..
 else
     echo Using Falcon codebase: $FALCON_HOME
@@ -34,7 +34,7 @@ fi
 
 if [ "x${FLEX_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FLEX_HOME=${SCRIPT_HOME}/..
 else
     echo Using Flex SDK: $FLEX_HOME

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler/commandline/mxmlc
----------------------------------------------------------------------
diff --git a/compiler/commandline/mxmlc b/compiler/commandline/mxmlc
index 883b42d..32d17de 100755
--- a/compiler/commandline/mxmlc
+++ b/compiler/commandline/mxmlc
@@ -26,7 +26,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/..
 else
     echo Using Falcon codebase: $FALCON_HOME
@@ -34,7 +34,7 @@ fi
 
 if [ "x${FLEX_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FLEX_HOME=${SCRIPT_HOME}/..
 else
     echo Using Flex SDK: $FLEX_HOME

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler/commandline/optimizer
----------------------------------------------------------------------
diff --git a/compiler/commandline/optimizer b/compiler/commandline/optimizer
index 475fffc..75a3a5b 100755
--- a/compiler/commandline/optimizer
+++ b/compiler/commandline/optimizer
@@ -26,7 +26,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/..
 else
     echo Using Falcon codebase: $FALCON_HOME

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler/commandline/swcdepends
----------------------------------------------------------------------
diff --git a/compiler/commandline/swcdepends b/compiler/commandline/swcdepends
index 8808d74..87d6bf0 100755
--- a/compiler/commandline/swcdepends
+++ b/compiler/commandline/swcdepends
@@ -26,7 +26,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/..
 else
     echo Using Falcon codebase: $FALCON_HOME
@@ -34,7 +34,7 @@ fi
 
 if [ "x${FLEX_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FLEX_HOME=${SCRIPT_HOME}/..
 else
     echo Using Flex SDK: $FLEX_HOME

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3a809247/compiler/commandline/swfdump
----------------------------------------------------------------------
diff --git a/compiler/commandline/swfdump b/compiler/commandline/swfdump
index eeb18dc..16bfd34 100755
--- a/compiler/commandline/swfdump
+++ b/compiler/commandline/swfdump
@@ -26,7 +26,7 @@
 
 if [ "x${FALCON_HOME}" = "x" ]
 then
-    SCRIPT_HOME=`dirname $0`
+    SCRIPT_HOME=`dirname "$0"`
     FALCON_HOME=${SCRIPT_HOME}/..
 else
     echo Using Falcon codebase: $FALCON_HOME


[2/2] git commit: [flex-falcon] [refs/heads/develop] - Merge branch 'develop' of https://github.com/adufilie/flex-falcon into develop

Posted by ah...@apache.org.
Merge branch 'develop' of https://github.com/adufilie/flex-falcon into develop


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

Branch: refs/heads/develop
Commit: e2543e084ab6cf790b43dd7a6fafd050d4f6ec4a
Parents: 56c262a 3a80924
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jan 4 14:28:17 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jan 4 14:28:17 2016 -0800

----------------------------------------------------------------------
 compiler.js/bin/mxmlc           | 2 +-
 compiler.jx/bin/asjsc           | 2 +-
 compiler.jx/bin/compc           | 2 +-
 compiler.jx/bin/mxmlc           | 2 +-
 compiler/commandline/compc      | 4 ++--
 compiler/commandline/mxmlc      | 4 ++--
 compiler/commandline/optimizer  | 2 +-
 compiler/commandline/swcdepends | 4 ++--
 compiler/commandline/swfdump    | 2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------