So I have a Jenkins job wherein as part of the build.
I run one script which creates a folder in the workspace say "test" so the script runs fine and creates the folder test.
After this, I have a maven command wherein I want to access this test folder(as an argument) I am trying it as $workspace/test
but it's not working.
Can anyone guide if i am missing anything here