-2

1.How to replace back slash with forward slash in Jenkins on UI :- SVN_EAR_PATH (String parameter) enter image description here

enter image description here

enter image description here

izhang05
  • 744
  • 2
  • 11
  • 26

1 Answers1

0

You cannot change a parameter's value in a freestyle job. When you use git you can use the Git parameter plugin to present the user with all the available tags, but I'm not aware of any Subversion alternative unfortunately.

I think your best effort in this case would be to write a pipeline job and then you will have control over the parameter's value (you could write SVN_EAR_PATH.replace('\\', '/'))

towel
  • 2,094
  • 1
  • 20
  • 30