From 8e1cf382c3993f0bbdf01c2d4c5879dd656daa59 Mon Sep 17 00:00:00 2001 From: angristan Date: Sun, 23 Sep 2018 16:33:59 +0200 Subject: [PATCH] Fix unset usage --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 2ce215b..21d03b7 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -560,7 +560,7 @@ function installOpenVPN () { echo "" echo "Continuing will update your installed packages and install needed ones." echo "" - unset $CONTINUE + unset CONTINUE until [[ $CONTINUE =~ (y|n) ]]; do read -rp "Continue? [y/n]: " -e -i y CONTINUE done