From e5fb1387fff6ca5bcc00e8d61c688009695d52c0 Mon Sep 17 00:00:00 2001 From: "b.waal" Date: Thu, 27 Feb 2020 11:33:06 +0100 Subject: [PATCH] Fixed oopsie --- installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index 5cca955..374d5ae 100644 --- a/installer.sh +++ b/installer.sh @@ -63,7 +63,7 @@ function LegacyPasswordCheck { echo "Please re-enter your password" read -s passdiatwo if [ -z $passdiatwo ]; then LegacyPasswordCheck; else -if [ $passdiaone != $passdiatwo ]; then echo "Password does not match!" && LegacyPasswordQuest; password="$passdiaone"; unset passdiaone passdiatwo fi +if [ $passdiaone != $passdiatwo ]; then echo "Password does not match!" && LegacyPasswordQuest; password="$passdiaone"; unset passdiaone passdiatwo; fi fi }