aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorIgor Pashev <igor.pashev@nexenta.com>2012-10-12 21:02:44 +0400
committerIgor Pashev <igor.pashev@nexenta.com>2012-10-12 21:02:44 +0400
commitef71906a42ecfa506d7346c1fcda68eb240baca6 (patch)
tree2fcf0605a935c3b89beb1d9782535c2d9f30b98d /scripts
parent10d25daadd03a63e7e487a907fb3d1ee0bee3bf0 (diff)
downloadcibs-ef71906a42ecfa506d7346c1fcda68eb240baca6.tar.gz
Use gtar
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/unpack-archive2
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"