From 40773765df41e39422190024226beea7d744b6a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 9 Oct 2024 00:50:33 +0200 Subject: [PATCH] ci: Fix install-common-dependencies.sh -h The option is advertised as alternative to --help, but doesn't actually work. While not super important for a script that isn't user facing, it's a trivial fix and doesn't hurt. Part-of: --- .gitlab-ci/install-common-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/install-common-dependencies.sh b/.gitlab-ci/install-common-dependencies.sh index 860e78424..9120e1cbd 100755 --- a/.gitlab-ci/install-common-dependencies.sh +++ b/.gitlab-ci/install-common-dependencies.sh @@ -19,7 +19,7 @@ usage() { TEMP=$(getopt \ --name=$(basename $0) \ - --options='' \ + --options='h' \ --longoptions='libdir:' \ --longoptions='destdir:' \ --longoptions='help' \