Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download folder artifact from artifactory

I need download artifact level folder from artifactory on shell script. I have found some same topics but I not found solution. Please give me solution.

like image 961
Night Avatar asked Jul 03 '18 11:07

Night


1 Answers

A tip for non PRO users:

  • Through the GUI go to the repository path (e.g. http://artifactory.mycompany.com:8081/artifactory/list/libs-release-local/path/to/my/folder/
  • Use the folder to recursively WGET the contents (e.g. wget -r --no-parent -nH --cut-dirs=4 --proxy=off http://artifactory.mycompany.com:8081/artifactory/list/libs-release-local/path/to/my/folder/)
like image 191
mistercaste Avatar answered Sep 29 '22 10:09

mistercaste