From 552709059e8f7b699e2e596565599f4430403150 Mon Sep 17 00:00:00 2001
From: Angristan <stanislas.lange@protonmail.com>
Date: Sun, 20 Nov 2016 22:50:51 +0100
Subject: [PATCH] Fix my previous commit

My bad.
---
 openvpn-install.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/openvpn-install.sh b/openvpn-install.sh
index b9a99be..4b1a606 100644
--- a/openvpn-install.sh
+++ b/openvpn-install.sh
@@ -28,13 +28,14 @@ if [[ -e /etc/debian_version ]]; then
 		echo "Your version of Debian/Ubuntu is not supported."
 		echo "I can't install a recent version of OpenVPN on your system."
 		echo ""
-		echo "However, if you're using Debian unstable/testing, or Ubuntu beta,
+		echo "However, if you're using Debian unstable/testing, or Ubuntu beta,"
 		echo "then you can continue, a recent version of OpenVPN is available on these."
 		echo "Keep in mind they are not supported, though."
-		while [[ $CONTINUE != "y" && $CONITNUE != "n" ]]; do
+		while [[ $CONTINUE != "y" && $CONTINUE != "n" ]]; do
 			read -p "Continue ? [y/n]: " -e CONTINUE
 		done
 		if [[ "$CONTINUE" = "n" ]]; then
+			echo "Ok, bye !"
 			exit 4
 		fi
 	fi