1.How to replace back slash with forward slash in Jenkins on UI :- SVN_EAR_PATH (String parameter)
Asked
Active
Viewed 2,333 times
-2

izhang05
- 744
- 2
- 11
- 26

Kalpesh Jain
- 1
- 2
-
please give more details and post some snippets. Your questions appears to be simple but not clear. – Anand Varkey Philips Oct 10 '18 at 06:16
1 Answers
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