diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-12-13 03:55:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-12-13 03:55:39 +0000 |
commit | e8d3ff5b67fa45fbd71e288684e600da919f5d8f (patch) | |
tree | aa8d247a0ecda41b4393fbac35a1264934856180 | |
parent | Bug #296554 - Add decompression support to ecompress (similar to ecompressdir (diff) | |
download | portage-multirepo-e8d3ff5b67fa45fbd71e288684e600da919f5d8f.tar.gz portage-multirepo-e8d3ff5b67fa45fbd71e288684e600da919f5d8f.tar.bz2 portage-multirepo-e8d3ff5b67fa45fbd71e288684e600da919f5d8f.zip |
Combine 2 shift calls into one. (trunk r15059)v2.1.7.14
svn path=/main/branches/2.1.7/; revision=15092
-rwxr-xr-x | bin/ebuild-helpers/ecompress | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/ebuild-helpers/ecompress b/bin/ebuild-helpers/ecompress index c6e0fc54..ecf362ce 100755 --- a/bin/ebuild-helpers/ecompress +++ b/bin/ebuild-helpers/ecompress @@ -26,8 +26,7 @@ fi # new_args: global array used to return revised arguments decompress_args() { local suffix=$1 binary=$2 - shift - shift + shift 2 # Initialize the global new_args array. new_args=() |