|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Workaround for my ant script:
<target name="runBat">
<!-- Remove quotes from Path: https://issues.jenkins-ci.org/browse/JENKINS-11992 -->
<loadresource property="clean.Path">
<propertyresource name="env.Path" />
<filterchain>
<tokenfilter>
<filetokenizer />
<replacestring from=""" to="" />
</tokenfilter>
</filterchain>
</loadresource>
<exec executable="cmd.exe" spawn="yes" vmlauncher="false" dir="./${run.dir}">
<env key="BUILD_ID" value="dontKillMe" />
<env key="Path" value="${clean.Path}" />
<arg line="/k call ${bat.file}" />
</exec>
</target>