I use
curl -O -L --user $AUTH_STRING https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/src/master/configurations/src/main/resources/Production/Config/filename
and it WORKS !
but I fail to download the directory itself with
curl -O -L --user $AUTH_STRING https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/src/master/configurations/src/main/resources/Production/Config
How can I download the entire directory ? ( it contains only files if that makes a difference )
@mihai onoprienco Welcome to the community!
I am afraid that you cannot download directory using 'CURL'.
But you can always create a script to download all content of directory.
Take a look at this gist - https://gist.github.com/christophermanning/1474925 (I have not validate, but code seems to accurate)
Thank you, I opted for several file downloads, since there were just a few known file names.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@mihai onoprienco Great it is my pleasure to help you.
If you found above answer helpful do mark it as 'Acceted Answer' so it can help others.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.