mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-17 17:02:42 +00:00
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:
parent
02deb1d782
commit
f62e08998c
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user