I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f8a3afd6 authored by kytv's avatar kytv
Browse files

Enclose the tr parameters in quotes.

Without quotes will work in most shells but in some configurations it will fail.
parent 5f81e923
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@
<!-- \n in an attribute value generates an invalid manifest -->
<exec executable="tr" inputstring="${workspace.changes.jbigi}" outputproperty="workspace.changes.jbigi.tr" errorproperty="mtn.error2" failifexecutionfails="false" >
<arg value="-s" />
<arg value="[:space:]" />
<arg value="&quot;[:space:]&quot;" />
<arg value="," />
</exec>
</target>
......@@ -462,7 +462,7 @@
</exec>
<exec executable="tr" inputstring="${build.temp}" outputproperty="build.temp.tr" failonerror="true">
<arg value="-d" />
<arg value="[:space:]"/>
<arg value="&quot;[:space:]&quot;"/>
</exec>
<exec executable="cut" inputstring="${build.temp.tr}" outputproperty="build.number" failonerror="true" >
<arg value="-f1" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment