I want grunt to copy the file to the network path.
Допустим Сетевой путь: dest: '\\mywww\dev\site\view\text.js' Но вместо этого он создаёт папку C:/mywww\dev\site\view It doesn't work everywhere: grunt-contrib-concat grunt-contrib-uglify works well
and here is grunt-contrib-copy
Writes:
Warning: Unable to create directory "C: \ inetpub \ wwwroot \ rrr \ C:" (Error code: ENOENT). Use --force to continue.
despite the fact that it creates a directory if it does not exist. C: \ inetpub \ wwwroot \ rrr
setting:
copy: { default: { expand: true, src: ['C:/inetpub/wwwroot/** '], dest: 'C:/inetpub/wwwroot/rrr', }, },
dest: '//mywww/dev/site/view/text.js'- kmv