0

我正进入(状态

警告:无法统计 srcFile (folderName) 使用 --force 继续。

当我运行 grunt:compress

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。有什么帮助吗??

4

1 回答 1

2

我通过使用以下配置解决了类似的问题。

compress: {
  main: {
    options: {
      archive: "portlet-coverage.war" ,
      mode: 'zip'
    },
    files: [
      {expand: true, 
       dot: true, 
       cwd: '../../target', 
       src: '**/*' 
       }
    ]
  }
}

更多信息请访问http://gruntjs.com/configuring-tasks

于 2015-02-25T23:06:27.680 回答