|
||||||||
|
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.

I have a similar issue since upgrading to 1.91, I use global passwords and expand them in managed scripts. Below is the difference I see in the console logs between 1.90 and 1.91 (with some values replaced for brevity):
1.90:
[EnvInject] - Inject global passwords.
Started by user Dave Hunt
[EnvInject] - Loading node environment variables.
Building on master in workspace /var/lib/jenkins/jobs/download/workspace
Deleting project workspace... done
executing script 'Download'
[workspace] $ /bin/bash -ex /tmp/build_step_template8799955465839670899.sh
+ wget --user=user --password=**** http://example.com/file.ext
1.91:
[EnvInject] - Inject global passwords.
Started by user Dave Hunt
[EnvInject] - Loading node environment variables.
Building on master in workspace /var/lib/jenkins/jobs/download/workspace
Deleting project workspace... done
executing script 'Download'
[workspace] $ /bin/bash -ex /tmp/build_step_template6310643866268335471.sh
+ wget -
user=user '-password=********' http://example.com/file.extNote that -
password=**** became '-password=********'