Repository: flex-asjs Updated Branches: refs/heads/develop 8f145dd8b -> 557f16ee7
add quotes to handle spaces in path Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/557f16ee Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/557f16ee Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/557f16ee Branch: refs/heads/develop Commit: 557f16ee7a82a9534d89e4611a304edec9d6659d Parents: 8f145dd Author: Alex Harui <[email protected]> Authored: Mon Jan 4 15:32:55 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Jan 4 15:32:55 2016 -0800 ---------------------------------------------------------------------- js/bin/asjsc | 2 +- js/bin/asjscompc | 2 +- js/bin/compc | 2 +- js/bin/externc | 2 +- js/bin/jquery | 2 +- js/bin/mxmlc | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/asjsc ---------------------------------------------------------------------- diff --git a/js/bin/asjsc b/js/bin/asjsc index 3270f31..618369d 100755 --- a/js/bin/asjsc +++ b/js/bin/asjsc @@ -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}/../.. http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/asjscompc ---------------------------------------------------------------------- diff --git a/js/bin/asjscompc b/js/bin/asjscompc index 7fd0cb0..35b8e7a 100755 --- a/js/bin/asjscompc +++ b/js/bin/asjscompc @@ -27,7 +27,7 @@ if [ "x${FALCON_HOME}" = "x" ] then - SCRIPT_HOME=`dirname $0` + SCRIPT_HOME=`dirname "$0"` FALCON_HOME=${SCRIPT_HOME}/../.. fi http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/compc ---------------------------------------------------------------------- diff --git a/js/bin/compc b/js/bin/compc index a0c712e..5d5a953 100755 --- a/js/bin/compc +++ b/js/bin/compc @@ -27,7 +27,7 @@ if [ "x${FALCON_HOME}" = "x" ] then - SCRIPT_HOME=`dirname $0` + SCRIPT_HOME=`dirname "$0"` FALCON_HOME=${SCRIPT_HOME}/../.. fi http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/externc ---------------------------------------------------------------------- diff --git a/js/bin/externc b/js/bin/externc index 7a42de6..f13f36f 100755 --- a/js/bin/externc +++ b/js/bin/externc @@ -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}/../.. http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/jquery ---------------------------------------------------------------------- diff --git a/js/bin/jquery b/js/bin/jquery index d11ac1d..64300b4 100755 --- a/js/bin/jquery +++ b/js/bin/jquery @@ -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}/../.. http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/557f16ee/js/bin/mxmlc ---------------------------------------------------------------------- diff --git a/js/bin/mxmlc b/js/bin/mxmlc index 48aede6..1a34671 100755 --- a/js/bin/mxmlc +++ b/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}/../..
