You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I've got a powershell script within a git repository that I use to build the project.
In the script, I'm trying to run the following command
Get-ChildItem -Path ${bamboo.build.working.directory}\src -Filter project.json -Recurse | ForEach-Object { & dnu restore $_.FullName 2>1 }
and the above returns the following error
11-Feb-2016 12:39:43 | Get-ChildItem : Access to the path 'C:\cygwin\home\Administrator\.ssh' is denied. |
11-Feb-2016 12:39:43 | At C:\build\FCL-FCRP-JOB1\Build\01_Build.ps1:26 char:1 |
11-Feb-2016 12:39:43 | + Get-ChildItem -Path ${bamboo.build.working.directory}\src -Filter project.json - ... |
The above script would run fine as INLINE, but the variable would resolve to empty string if it ran as a File.
Does anyone experience the same problem? Or am I missing something here?
Thank you.
Bamboo can indeed only expand variables when you use an inline script.
When you use a script file, PowerShell has absolutely no knowledge what those ${bamboo...} things are.
Passing them as arguments, or use the Bamboo environment variables, will do the trick.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To answer my own question, it turns out if you use powershell script inline, bamboo automatically substitute the bamboo variable into their respective values. However if you run it as a file, then you need to pass in the bamboo variable as arguments, so you need a param block inside the script file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.