0

我正在尝试使用 Grunt 使用“grunt-tar.gz”将目录压缩为 .tar.gz:

targz: {
            standalone_win: {
                files: {
                    "./target/dir":  "./target/dir.tgz"
                }
            }
        }

但是,它给了我一个错误,因为找不到源文件'./target/dir.tgz'。还有其他方法可以使用 grunt-shell 或 grunt-contrib-compress 吗?什么是最好的方法?

4

1 回答 1

0

用 grunt-contrib-compress 做到的:

compress {
     tarGz: {
                options: {
                    archive: './target/dir.tgz'
                },
                files: [{
                    cwd: './target/someDirToCompress',
                    expand: true,
                    src: './**',
                    dest: './'
                }]
     }
}
于 2017-07-31T14:51:47.877 回答