diff options
author | 2009-12-13 03:28:05 +0000 | |
---|---|---|
committer | 2009-12-13 03:28:05 +0000 | |
commit | 091bc9ad011550aacc466cdccf32fd6d0ba8e835 (patch) | |
tree | daa279b9f9800204219d2d06dec1af309d586c5f | |
parent | Bug #296554 - Add decompression support to ecompress (similar to ecompressdir (diff) | |
download | portage-multirepo-2.2_rc59.tar.gz portage-multirepo-2.2_rc59.tar.bz2 portage-multirepo-2.2_rc59.zip |
Combine 2 shift calls into one.v2.2_rc59
svn path=/main/trunk/; revision=15059
-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=() |