I wan to make use of bamboo Variables in the shell script available on my Linux Server where Bamboo is hosted. I have tried using ${bamboo.build.working.directory} but this doesn't works.
Any help is greatly appreciated.
Thanks,
Edward
Hi Edward,
Thanks for your question!
Try using this - ${bamboo_build_working_directory}
Explanation - When you want to use the Bamboo Variables in the session we have to replace the "." with "_"
So ${bamboo.build.working.directory} -- Will be replaced with ==> ${bamboo_build_working_directory}
Hope this will help.
Thanks,
Robhit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can list all the available shell variables by the "set" command. The bamboo variables start with the word "bamboo" so you can filter them:
set | grep ^bamboo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.