- Decompress silenlty
This commit is contained in:
parent
de6ca340cd
commit
3b6c7d671f
1 changed files with 3 additions and 3 deletions
|
@ -25,13 +25,13 @@ unpack() {
|
|||
fi
|
||||
case "${A##*.}" in
|
||||
bz2)
|
||||
tar xfjv ${SRC_POOL}/${A} || sit_fail
|
||||
tar xjf ${SRC_POOL}/${A} || sit_fail
|
||||
;;
|
||||
gz|tgz)
|
||||
tar xfzv ${SRC_POOL}/${A} || sit_fail
|
||||
tar xzf ${SRC_POOL}/${A} || sit_fail
|
||||
;;
|
||||
xz)
|
||||
tar xfJv ${SRC_POOL}/${A} || sit_fail
|
||||
tar xJf ${SRC_POOL}/${A} || sit_fail
|
||||
;;
|
||||
*)
|
||||
sit_fail "Archive format not recogized"
|
||||
|
|
Loading…
Reference in a new issue