Comment #6 on issue 3913 by [email protected]: Update to RBTools 0.7.4,
scripts to interface with reviewboard now error.
https://code.google.com/p/reviewboard/issues/detail?id=3913
Hi Barret,
I have determined what the issue is. The password which is passed to rbt in
the --password argument looks something like this mypswd$!123. If I echo
that string in bash then result is mypswd123 because we are using double
quotes. If I change the echo command to use single quotes, I get to correct
output of mypswd$!123. The fix for me is in the perl snippet that I have
pasted here.
I changed: $rbt_options .= qq( --password "$password");
to $rbt_options .= qq( --password '$password');
And everything started to work.
Sorry for inconveniencing you with this issue, user error again!
Regards,
Jens.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.