Hi For a parameterized build with one "run parameter" (let's name it X), Jenkins set three environment variables.
X
X.jobName
X.number
How can the latter two be used in a pre-step shell script?
Bash cannot handle environment variables containing a dot, it seems.
$ echo ${X.jobName}
bash: ${X.jobName}: bad substitution
