diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-11 18:15:41 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-11 18:15:41 (EDT) |
commit | f79dea0f5e1b89488d73bfb0360e651b8d578e15 (patch) | |
tree | 682bacab015acd1175f57b7bcbc8b65e4cb02ba5 /src/index.sh | |
parent | d19eb991c6cf206dba7a9ecc0732c4ab5e7b4f85 (diff) |
Consistently shift function arguments
Diffstat (limited to 'src/index.sh')
-rw-r--r-- | src/index.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.sh b/src/index.sh index bd27f79..6246f85 100644 --- a/src/index.sh +++ b/src/index.sh @@ -49,6 +49,7 @@ feed_add_package() local pkg="${6}" local size="${7}" local file="${8}" + shift 8 local pkg_hash= local feed_hash_idx= local old_dir= @@ -88,6 +89,7 @@ feed_remove_package() local plat="${4}" local sect="${5}" local pkg="${6}" + shift 6 local pkg_hash= local feed_hash_idx= local old_dir= |