From f62e08998ca91e1e11f042570317d75ba17ab11d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Wed, 19 Mar 2025 10:47:33 +0100 Subject: [PATCH] ci: shellcheck - remove unused argument MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the "-a" argument was introduced with this tool but never was actually used. Related to: #10951 Signed-off-by: Lukáš Doktor --- ci/gh-util.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/gh-util.sh b/ci/gh-util.sh index 8c609deef9..449b078682 100755 --- a/ci/gh-util.sh +++ b/ci/gh-util.sh @@ -127,13 +127,11 @@ handle_args() { setup - local show_all="false" local opt - while getopts "ahr:" opt "$@" + while getopts "hr:" opt "$@" do case "${opt}" in - a) show_all="true" ;; h) usage && exit 0 ;; r) repo="${OPTARG}" ;; esac