diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2023-01-26 13:57:49 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2023-01-26 13:57:49 +0000 |
commit | be95006d354dcae54c39ec3beb9cb65cabf9f2a4 (patch) | |
tree | 3be2f15c160d1314b7c1bc1db2bff4d06978e625 | |
parent | c5820072a92b4d43d75af40260b2e36c3c7bd68d (diff) | |
download | alpine-conf-be95006d354dcae54c39ec3beb9cb65cabf9f2a4.zip |
tests: fix fake apk
option --quiet has no optarg so we should not shift.
-rwxr-xr-x | tests/bin/apk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bin/apk b/tests/bin/apk index ceff306..cf06ed7 100755 --- a/tests/bin/apk +++ b/tests/bin/apk @@ -24,7 +24,7 @@ while [ $# -gt 0 ]; do ;; --quiet) quiet=1 - shift ;; + ;; --arch) shift ;; --repositories-file) shift ;; --keys-dir) shift ;; |