diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-10-12 21:02:44 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-10-12 21:02:44 +0400 |
commit | ef71906a42ecfa506d7346c1fcda68eb240baca6 (patch) | |
tree | 2fcf0605a935c3b89beb1d9782535c2d9f30b98d | |
parent | 10d25daadd03a63e7e487a907fb3d1ee0bee3bf0 (diff) | |
download | cibs-ef71906a42ecfa506d7346c1fcda68eb240baca6.tar.gz |
Use gtar
-rwxr-xr-x | scripts/unpack-archive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/unpack-archive b/scripts/unpack-archive index 4788fc1..662a6f3 100755 --- a/scripts/unpack-archive +++ b/scripts/unpack-archive @@ -19,7 +19,7 @@ fi case "$archive" in *.tar.*|*.t?z|*.tbz2) [ -d "$sourcedir" ] || mkdir -p "$sourcedir" - tar xf "$archive" -C "$sourcedir" --strip=1 + gtar xf "$archive" -C "$sourcedir" --strip=1 ;; *) fatal "Unsupported archive: $archive" |