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 have installed https://marketplace.atlassian.com/plugins/com.sysbliss.bamboo.plugins.prepost-build-command
I added a command "curl ..."
But I get a error in the log output :
simple 16-May-2015 22:48:00 [BuildCommandRunner] running command: curl ....
error 16-May-2015 22:48:00 Unable to find executable at curl. Will try to run it anyway.
So I added an Executable via /admin/agent/viewBuilders.action
Named "curl", path "curl".
That didn't work, so I tried the linux path "/usr/bin/curl", that didn't work either.
Is the problem with the addon not finding the exec, or the exec?
Use the full path to curl in prepost-build-command plugin.
Cheers, I actually worked it out by process of elimination, but still a valid post I think in case others run into this problem.
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.
Hello @Kazi Rizwan ,
The full path is required on the field "Commands" in the plugin:
In the case of curl, you would not insert `curl` but the full path `/usr/bin/curl`
I hope that helped :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Ian,
Please check that curl executable is available at Bamboo server or agent machine via command line.
Create Script task with curl command to identify if issue is at Bamboo or plugin side.
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.