我想使用 grunt-contrib-copy (或任何其他 grunt 复制插件)将文件复制到网络位置。
在下面尝试:
copy: {
test: {
files: [
{ src: ['Scripts/*'], dest: ['\\\\location\\site\\Scripts\'] }
]
}
}
但得到:
警告:无法写入“\\location\site\Scripts\”文件(错误或代码:未定义)。使用 --force 继续。
是否有可能/如何复制到网络位置?