|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [JIRA] (JENKINS-15751) Cannot escape dollar si... [email protected] (JIRA)

Hi Gregory,
Sorry for the late reply (I don't have access to a windows Jenkins instance at the moment), but I'll use a similar use case to Vincent's:
— User Story —
As a Jenkins user
I want to use the environment variable name "win_sys_path" with a value "\\127.0.0.1\c$\WINDOWS"
So that I can access a windows system folder from a remote computer.
— User Scenarios —
Global: Given a Jenkins Windows instance
Given the environment variable "win_sys_path" with value "\\127.0.0.1\c$\WINDOWS"
When I echo the variable "win_sys_path"
Then the value should be "\\127.0.0.1\c"
Given the environment variable "win_sys_path" with value "\\127.0.0.1\c\$\WINDOWS"
When I echo the variable "win_sys_path"
Then the value should be "\\127.0.0.1\c$\WINDOWS"
Given the environment variable "win_sys_path" with value "\\127.0.0.1\c\\$\WINDOWS"
When I echo the variable "win_sys_path"
Then the value should be "\\127.0.0.1\c\$\WINDOWS"
Hope that makes sense.
Nick