You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should use a single quote (`'`) instead of a double quote (`"`) whenever you can.
49
+
This is particularly important in Pipelines where a statement may be interpreted by both the Pipeline engine and an external interpreter, such as a Unix shell (`sh`) or Windows Command (`bat`) or Powershell (`ps`).
50
+
This reduces complications with password masking and command processing.
51
+
The first step in the above example properly demonstrates this.
52
+
The next two steps use the basic Pipeline `echo` step.
53
+
The first one references the Groovy variable and needs no quotes.
54
+
The second one needs to use double quotes, so that the interpolation is performed in Groovy.
55
+
56
+
For more information, see the Pipeline step reference for [Credentials Binding Plugin](https://www.jenkins.io/doc/pipeline/steps/credentials-binding/).
57
+
46
58
## Changelog
47
59
48
60
See [GitHub Releases](https://github.com/jenkinsci/credentials-binding-plugin/releases) for new releases,
0 commit comments