From 39a4962ee0e24d7bcf2e636e1e94eeaff948dc21 Mon Sep 17 00:00:00 2001 From: Chris Lewicki Date: Thu, 21 May 2020 20:44:31 -0400 Subject: [PATCH] swap single quotes for doubles since they won't expand(???) --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 wireguard-install.sh diff --git a/wireguard-install.sh b/wireguard-install.sh old mode 100644 new mode 100755 index f515ec8..97ea756 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -41,7 +41,7 @@ PrivateKey = $CLIENT_PRIV_KEY Address = $CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64" # Fix for bug where trailing comma is left if no secondary DNS specified -if [ -z '$CLIENT_DNS_2' ] +if [ -z "$CLIENT_DNS_2" ] then echo "DNS = $CLIENT_DNS_1,$CLIENT_DNS_2" else