ci: shellcheck - remove unused argument

the "-a" argument was introduced with this tool but never was actually
used.

Related to: #10951

Signed-off-by: Lukáš Doktor <ldoktor@redhat.com>
This commit is contained in:
Lukáš Doktor 2025-03-19 10:47:33 +01:00
parent 02deb1d782
commit f62e08998c
No known key found for this signature in database
GPG Key ID: 26B362E47FCF22C1

View File

@ -127,13 +127,11 @@ handle_args()
{ {
setup setup
local show_all="false"
local opt local opt
while getopts "ahr:" opt "$@" while getopts "hr:" opt "$@"
do do
case "${opt}" in case "${opt}" in
a) show_all="true" ;;
h) usage && exit 0 ;; h) usage && exit 0 ;;
r) repo="${OPTARG}" ;; r) repo="${OPTARG}" ;;
esac esac