diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-17 08:07:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-17 08:07:22 +0000 |
commit | 40adef3a2457a2150c270c35ad8ee0ff8e1b2a8d (patch) | |
tree | 7cbf8beb6dcd149f160a485b61087e926491ca49 | |
parent | dc9dc58c652a817121298e80ffb6689547a6aa4a (diff) | |
download | portage-40adef3a2457a2150c270c35ad8ee0ff8e1b2a8d.tar.gz portage-40adef3a2457a2150c270c35ad8ee0ff8e1b2a8d.tar.bz2 portage-40adef3a2457a2150c270c35ad8ee0ff8e1b2a8d.zip |
send stdout to /dev/null since we rely on the output of stdout here to determine the proper suffix #171212
svn path=/main/trunk/; revision=6229
-rwxr-xr-x | bin/ecompress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ecompress b/bin/ecompress index de01cfdec..046e546fb 100755 --- a/bin/ecompress +++ b/bin/ecompress @@ -32,7 +32,7 @@ case $1 in # to compress as some programs will refuse to do compression # if it cannot actually compress the file echo {0..1000} > compressme - ${PORTAGE_COMPRESS} ${PORTAGE_COMPRESS_FLAGS} compressme + ${PORTAGE_COMPRESS} ${PORTAGE_COMPRESS_FLAGS} compressme > /dev/null suffix=$(ls compressme*) suffix=${suffix#compressme} cd / |