It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
As part of my java maven build, i need to run maven install for one 3rd library. i have been trying to trigger build, but every time build fails while looking for 3rd library.
I have created a script to install maven library, execution of the script fails. I need help here.
pipelines: default: - step: script: # Modify the commands below to build your repository. - cd $BUILD_DIR/src/lib && mvn install && cd .. - mvn clean compile package
+ cd $BUILD_DIR/src/lib && mvn install && cd ..bash: cd: /src/lib: No such file or directoryCompleted at 2016-12-07T01:28:03Z
Hi Ranga,
Bitbucket Pipelines doesn't set a $BUILD_DIR variable. Your script will automatically be run from within the directory containing your source code, so normally you don't need to refer to it explicitly (ie. normally something like "cd src/lib"
should be all you need). But if you do need to refer to your source directory explicitly you can use the variable $BITBUCKET_CLONE_DIR.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreBitbucket Pipelines helps me manage and automate a number of serverless deployments to AWS Lambda and this is how I do it. I'm building Node.js Lambda functions using node-lambda ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.