diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-03-17 08:12:43 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-03-17 08:12:43 +0000 |
commit | 3e4591170a360981a35ec17a64df1c6db1e2097e (patch) | |
tree | db4008706776b5efa04e927dc93e61484af69cc8 | |
parent | 71240ee09eed77ea20bb3d236248fe1165f464e9 (diff) | |
download | cpt-3e4591170a360981a35ec17a64df1c6db1e2097e.tar.gz |
kiss: Fix #125
FossilOrigin-Name: f317c6af7744e35be6dfe590124ea9bbe885bcac9592a9ad924a08faeae988c4
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -303,7 +303,7 @@ pkg_extract() { # Only 'tar' archives are currently supported for extraction. # Any other file-types are simply copied to '$mak_dir' which # allows for manual extraction. - *://*.tar.*|*://*.tgz) + *://*.tar|*://*.tar.??|*://*.tar.???|*://*.tar.????|*://*.tgz) decompress "$src_dir/$1/${src##*/}" | tar xf - --strip-components 1 || die "$1" "Couldn't extract ${src##*/}" |