diff options
author | merakor <cem@ckyln.com> | 2020-05-05 20:17:11 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-05 20:17:11 +0000 |
commit | da9c56b4b017d3e352cab120c492304020cf8fa4 (patch) | |
tree | 58b5659ca998658c964e521e20a995eac3107dc8 | |
parent | fd92df4d5f971e14ae5eb7d2986922376b4a21cc (diff) | |
download | cpt-da9c56b4b017d3e352cab120c492304020cf8fa4.tar.gz |
kiss: Drop tar's p flag as it's not needed.
FossilOrigin-Name: 311b14e449787b625af9bd5c35ea1096c2530511cd11b88413311ae5bb79aee0
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |