From 72829be281b073307438c25ec8d2cc3d76f18b80 Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Fri, 26 Oct 2018 12:14:10 -0700 Subject: [PATCH] Remove shellcheck overrides Signed-off-by: Dan Schaper --- advanced/Scripts/webpage.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/advanced/Scripts/webpage.sh b/advanced/Scripts/webpage.sh index 035bca18..14d80355 100755 --- a/advanced/Scripts/webpage.sh +++ b/advanced/Scripts/webpage.sh @@ -110,7 +110,6 @@ SetWebPassword() { # Prevents a bug if the user presses Ctrl+C and it continues to hide the text typed. # So we reset the terminal via stty if the user does press Ctrl+C trap '{ echo -e "\nNo password will be set" ; stty sane ; exit 1; }' INT - # shellcheck disable=SC2162 read -s -r -p "Enter New Password (Blank for no password): " PASSWORD echo "" @@ -120,7 +119,6 @@ SetWebPassword() { exit 0 fi - # shellcheck disable=SC2162 read -s -r -p "Confirm Password: " CONFIRM echo "" fi