Don't do verbose unpacking, it's just log noise
svn path=/nixpkgs/branches/stdenv-updates/; revision=33573
This commit is contained in:
parent
461455afe9
commit
4a84fd30b5
@ -432,15 +432,15 @@ unpackFile() {
|
|||||||
case "$curSrc" in
|
case "$curSrc" in
|
||||||
*.tar.xz | *.tar.lzma)
|
*.tar.xz | *.tar.lzma)
|
||||||
# Don't rely on tar knowing about .xz.
|
# Don't rely on tar knowing about .xz.
|
||||||
xz -d < $curSrc | tar xvf -
|
xz -d < $curSrc | tar xf -
|
||||||
;;
|
;;
|
||||||
*.tar | *.tar.* | *.tgz | *.tbz2)
|
*.tar | *.tar.* | *.tgz | *.tbz2)
|
||||||
# GNU tar can automatically select the decompression method
|
# GNU tar can automatically select the decompression method
|
||||||
# (info "(tar) gzip").
|
# (info "(tar) gzip").
|
||||||
tar xvf $curSrc
|
tar xf $curSrc
|
||||||
;;
|
;;
|
||||||
*.zip)
|
*.zip)
|
||||||
unzip $curSrc
|
unzip -qq $curSrc
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if [ -d "$curSrc" ]; then
|
if [ -d "$curSrc" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user