Is the Folder Name available as an environment variable similar to JOB_NAME?
For a folder; JOB_NAME contains the full path including parent folders. I want the immediate parent folder as an environment variable.
Is the Folder Name available as an environment variable similar to JOB_NAME?
For a folder; JOB_NAME contains the full path including parent folders. I want the immediate parent folder as an environment variable.
I used:
See http://www.tldp.org/LDP/abs/html/parameter-substitution.html
No such variable exists, but
$(basename $(dirname $JOB_NAME))
would give you what you are asking for.Using the suggestion of
$(basename $(dirname $JOB_NAME))
combined with the Environment Script Plugin, you should be able to set such an environment variable by selecting Generate environment variables from script and then providing the Script Content of: