1

When I configure the string parameter in Jenkins then call this parameter from the execute shell build step, it doesn't seem to consider this parameter because in the log nothing appear (where the yellow arrows are pointing):

log execute shell parameter configuration

K. B.
  • 1,356
  • 2
  • 14
  • 20
mehdi
  • 47
  • 1
  • 8

1 Answers1

1

It looks like the parameter should be called with a different syntax in Windows and Linux.
You can try --baseurl = %link84% for Windows and --baseurl = ${link84} for Linux.

Source: How to add String parameter to Jenkins with optional checkbox

K. B.
  • 1,356
  • 2
  • 14
  • 20