Skip to content

Commit

Permalink
Fix sed for paths containing spaces on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
WadeWalker committed Mar 1, 2014
1 parent d1250ba commit c9b209b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c9b209b

Please sign in to comment.