Merge pull request #5 from konimex/master

pkg_tar: actually compress as gzip
This commit is contained in:
black 2019-06-09 16:36:17 +03:00 committed by GitHub
commit fe00112963

2
puke
View File

@ -89,7 +89,7 @@ pkg_manifest() {
}
pkg_tar() {
tar pcf "$bin_dir/$pkg" -C "$pkg_dir" . || die "Failed to create package."
tar zpcf "$bin_dir/$pkg" -C "$pkg_dir" . || die "Failed to create package."
log "Use '$0 install $name' to install the package."
}