grunt-contrib-copy
grunt-contrib-copy copied to clipboard
"mode" attribute is not working properly
Hi,
I'm trying to copy a couple of files setting execution permissions (using mode
attribute), but it seems it is not working.
Here is an example:
https://gist.github.com/neuquino/cf7e9230d3d9a843ab9e
Is this a bug or I'm doing something wrong?
copy:{
options: {
mode:0755,
},
scripts:{
src:['*'],
dest:'dest/',
expand:true,
cwd:'src/'
}
},