diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-01T09·36+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-01T09·36+0000 |
commit | 6842bc9ac4fda9e4ef6b7e71d23b5050357bc1cc (patch) | |
tree | d350ecc6021646c7da89f7787a641d7fbfb0879c | |
parent | f913283570aabb2e968a4f6bd06f74c03a5d772c (diff) |
* Be quiet when untarring a channel file.
-rw-r--r-- | corepkgs/channels/unpack.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/channels/unpack.sh.in b/corepkgs/channels/unpack.sh.in index 332877b9eca5..80c177024c55 100644 --- a/corepkgs/channels/unpack.sh.in +++ b/corepkgs/channels/unpack.sh.in @@ -10,7 +10,7 @@ echo '[' > $expr nr=0 for i in $inputs; do echo "unpacking $i" - @bunzip2@ < $i | @tar@ xvf - + @bunzip2@ < $i | @tar@ xf - @coreutils@/mv * ../$nr # !!! hacky echo "(import ./$nr)" >> $expr nr=$(($nr + 1)) |