From 1043fb066550cef294c74bc417cf55e120cdc678 Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Thu, 9 Jan 2020 12:01:26 +0100 Subject: [PATCH] TT#72351 Fix 62a2332: allow '--help' option for ngcp-system-tests Otherwise: > root@web01a:~# ngcp-system-tests --help > ngcp-system-tests: unrecognized option '--help' > root@web01a:~# Change-Id: I464ee9be5b0311f27d0682756ebcb14f49ba82a2 --- ngcp-system-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngcp-system-tests b/ngcp-system-tests index dc3b83b..f7ac9ba 100755 --- a/ngcp-system-tests +++ b/ngcp-system-tests @@ -27,7 +27,7 @@ HELP } get_options() { - local _cmdline_opts="mode:" + local _cmdline_opts="help,mode:" local _opt_temp _opt_temp=$(getopt -n "${ME}" -o 'h' -l "${_cmdline_opts}" -- "${OPTS[@]}")