commit ca57d77585dcd9b18f62aba1c0989e3d1c3ec1c5
parent 0da69002ff52a09b37f19b2c042c7ab44ff75688
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Tue, 5 May 2020 23:08:14 +0300
kiss: Drop tar's p flag as it's not needed.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kiss b/kiss
@@ -1059,7 +1059,7 @@ pkg_install() {
log "$pkg_name" "Extracting $tar_file"
# Extract the tarball to catch any errors before installation begins.
- decompress "$tar_file" | "$tar" pxf - -C "$tar_dir/$pkg_name"
+ decompress "$tar_file" | "$tar" xf - -C "$tar_dir/$pkg_name"
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/manifest" ] ||
die "'${tar_file##*/}' is not a valid KISS package"