From 91a2187ec1c868bdd22dc6ba99cce01901bf89e7 Mon Sep 17 00:00:00 2001 From: Flow86 <656249+Flow86@users.noreply.github.com> Date: Mon, 26 May 2025 11:43:02 +0200 Subject: [PATCH] fix: allow more parameters to be passed through allow short form of --help (-h) and also --version (-V) to be directly used --- run-prtgmpprobe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-prtgmpprobe.sh b/run-prtgmpprobe.sh index e480b18..9619588 100644 --- a/run-prtgmpprobe.sh +++ b/run-prtgmpprobe.sh @@ -13,7 +13,7 @@ _passthrough=0 for _arg in "$@" do case "$_arg" in - --help|example-config) + -h|--help|example-config|-V|--version) _passthrough=1 ;; esac