Christoph Vogtländer
unread,Feb 12, 2015, 9:25:56 AM2/12/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkinsci Users
Hi,
is it possible to archive hidden folders (.svn in my case) using the
"archive" (or similar) step?
The ArtifactArchiver (which I believe the archive step is based on) has
a method "boolean defaultExcludes()" but the interface is not available
in the archive step.
I also tried
step([$class: 'ArtifactArchiver', artifacts: 'src/', excludes: '',
defaultExcludes: false])
and even
def aa = new hudson.tasks.ArtifactArchiver('src/')
aa.setDefaultExcludes(false)
step aa
without success.
Thanks
Christoph