我正在
警告:无法使用stat srcFile(folderName)使用--force继续。
当我在运行grunt时:压缩
compress: {
main: {
options: {
archive: function () {
return "build/build"+ '.zip'
}
},
files: [
{
cwd:"/log/path/to/folder/where/apk/is/kept/",
src: ["**/*"],
dest: 'android'
}
]
}}
如果我不提及dest和只有src(直到** / *的完整路径),这样工作正常,但在这种情况下,我得到所有路径文件夹的zip。 任何帮助?
答案 0 :(得分:2)
我使用以下配置修复了类似的问题。
compress: {
main: {
options: {
archive: "portlet-coverage.war" ,
mode: 'zip'
},
files: [
{expand: true,
dot: true,
cwd: '../../target',
src: '**/*'
}
]
}
}
提供了更多信息