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.
Hi, I have this pipeline code
pipelines:
branches:
develop:
- step:
runs-on:
- self.hosted
- linux
deployment: staging
script:
- cd /var/www/html/dev/project
and it gives me this error
cannot access /var/www/html/dev/project: No such file or directory
G'day!
Welcome to the Bitbucket Cloud community.
The error message you have specified will usually display when the path that has been entered is incorrect, rather than anything related to permissions for that particular path.
So that you can troubleshoot why the path is not able to be found and verify that the directory you are trying to navigate to actually exists, I would suggest adding the following command to the build step to list only the directory names:
ls -d */
Once you have done so, check to see that the directory is correct - if it is - you may need to add a . character to your syntax to change directory depending on where the current working directory is:
cd ./var/www/html/dev/project
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.