using a minimal jenkinsfile as an example
node("master") {
stage("Test") {
sh(
label: "THIS SHOULD DISPLAY",
script: "set -e; echo 'this should not be logged it is secret'"
)
}
}
For some reason the following occurs
I'm not sure what's going on here. Ideally I want the cmand not to be displayed and the label to take the place of the command.
