user3588684
user3588684

Reputation: 63

How to copy an entire directory using artifact? (Jenkins)

How to copy an entire directory(with subdirectories) using artifact in jenkins ? i tried like this : /lib/ but jenkins does not copy the subdirectories

Upvotes: 0

Views: 144

Answers (1)

Slav
Slav

Reputation: 27485

You can use ** to indicate "any directory path"

/lib/**/*

Upvotes: 1

Related Questions