I am trying to compress a directory to a .tar.gz with Grunt using "grunt-tar.gz" doing this:
targz: {
standalone_win: {
files: {
"./target/dir": "./target/dir.tgz"
}
}
}
However, it gives me an error because the source file './target/dir.tgz' is not found. Are there other ways to do this using grunt-shell or grunt-contrib-compress? What is the best way?
Did it with grunt-contrib-compress: