Reputation: 63
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
Reputation: 27485
You can use ** to indicate "any directory path"
**
/lib/**/*
Upvotes: 1