when I copy some files using the following task
copy: {
tmp: {
src: 'lib/public/**',
dest: 'tmp/'
}
}
this is my source
|_lib
|_public
|_ dir1
|_ dir2
|_ index.html
My directory structure from the copy method looks like the following
|_tmp
|_lib
|_public
|_ dir1
|_ dir2
|_ index.html
I'd prefer if the directory looked more like this
|_tmp
|_ dir1
|_ dir2
|_ index.html
In other words I want everything from lib/public
to be copied to tmp
is there another option I have to enable?