I use java.util.Properties to parse the output, and it's not really considered a bug. There's not really any good way to know what to do with output. If you don't want it to be picked up but you want it displayed to the log, redirect it to stderr (bundle install >&2).

If you want to be explicit about what's considered for parsing, you can do this in your shellscript:

exec 3>&1 1>&2
bundle install
echo foo=bar >&3

This redirects stdout to stderr, and stores stdout in the file handle '3'. Echoing to 3 (>&3) sends it to be parsed.

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

Reply via email to