diff options
author | Wade Walker <[email protected]> | 2014-02-08 15:56:15 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2014-03-01 15:31:20 -0600 |
commit | c9b209bc850bda0c076d89ccf72a18248bb0a20b (patch) | |
tree | f99ca42e1dcc15b76882b64dbf955fd2fef8fb92 /make/build.xml | |
parent | d1250ba34ab3015a2fbb3a9e71b444d7e4d0050d (diff) |
Fix sed for paths containing spaces on Windows.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 1fb5987..d835f8b 100644 --- a/make/build.xml +++ b/make/build.xml @@ -72,7 +72,7 @@ </exec> <exec dir="." executable="sed" logError="true" failonerror="false" failifexecutionfails="false" outputproperty="gluegen.build.branch"> - <arg line="-e '/^[^*]/d' -e 's/* \(.*\)/\1/' ${build}/localbranch.raw"/> + <arg line="-e '/^[^*]/d' -e 's/* \(.*\)/\1/' '${build}/localbranch.raw'"/> </exec> <property name="gluegen.build.branch" value="manual"/> <!-- fallback --> <exec dir="${project.root}" executable="git" logError="true" failonerror="false" failifexecutionfails="false" |