Is there any way to get Bamboo use the correct path while executing a command. It appears that it adds some quote to a path and ends up displaying "no such file or directory" . For example to run stat on a location /xyz/xyz is there any thing that needs to be done. Is there any documentation on this ..
Hmm, so creating a Script Task with an Inline Script:
stat /xyz/xyz
doesn't work?
stat /xyz/*
doesn't work......
is there support for wildcard characters?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you typed it in as the script body (correct) or script arguments (incorrect)?
It should work, it's an oridnary shell script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have got a set of files under script directory, supprising on checking out these files using bamboo , it loses execute attribute. Fair enough now I am trying to apply these attribute using inline script. here the problem is that it can never find these files.
for example stat ${bamboo.build.working.directory}/* == No such file or directory
any help is much appreciated.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are right I have typed it in argument, I just discovered scripts I am playing with this . Is there any documentation on how to setup Bamboo for make build system.
Thanks very much for your help
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.