From ba1040f13edb36b0f81574f20a08ef5203aa0f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Sun, 14 Feb 2021 15:31:44 +0100 Subject: [PATCH] Fixed shellcheck warning SC2027: SC2027: The surrounding quotes actually unquote this. Remove or escape them. --- scripts/openvpn/makeOVPN.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openvpn/makeOVPN.sh b/scripts/openvpn/makeOVPN.sh index 2519ac0..5734f66 100755 --- a/scripts/openvpn/makeOVPN.sh +++ b/scripts/openvpn/makeOVPN.sh @@ -25,7 +25,7 @@ helpFunc() { echo "::: Commands:" echo "::: [none] Interactive mode" echo "::: nopass Create a client without a password" - echo "::: -n,--name Name for the Client (default: '"$(hostname)"')" + echo "::: -n,--name Name for the Client (default: \"$(hostname)\")" echo "::: -p,--password Password for the Client (no default)" echo "::: -d,--days Expire the certificate after specified number of days (default: 1080)" echo "::: -b,--bitwarden Create and save a client through Bitwarden"