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
|
||||
*.tar.xz | *.tar.lzma)
|
||||
# Don't rely on tar knowing about .xz.
|
||||
xz -d < $curSrc | tar xvf -
|
||||
xz -d < $curSrc | tar xf -
|
||||
;;
|
||||
*.tar | *.tar.* | *.tgz | *.tbz2)
|
||||
# GNU tar can automatically select the decompression method
|
||||
# (info "(tar) gzip").
|
||||
tar xvf $curSrc
|
||||
tar xf $curSrc
|
||||
;;
|
||||
*.zip)
|
||||
unzip $curSrc
|
||||
unzip -qq $curSrc
|
||||
;;
|
||||
*)
|
||||
if [ -d "$curSrc" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user