1
1
mirror of https://github.com/namibia/openvpn-install.git synced 2024-06-02 11:30:48 +00:00

Fix unset usage

This commit is contained in:
angristan 2018-09-23 16:33:59 +02:00
parent 5a67d3b3e7
commit 8e1cf382c3

View File

@ -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