From eb926bab77605fbfbba56a30f38544a1eb4d8528 Mon Sep 17 00:00:00 2001 From: Daan Date: Fri, 29 Nov 2024 10:00:45 +0100 Subject: [PATCH] Removed debug echo line. --- ntos/credcon/credcon.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ntos/credcon/credcon.sh b/ntos/credcon/credcon.sh index 2774c8c..d5ffbf4 100644 --- a/ntos/credcon/credcon.sh +++ b/ntos/credcon/credcon.sh @@ -104,17 +104,16 @@ main() { # This is done to kill the loading bar process, because it will be followed-up by the "login_failed" dialogue. pkill -f yad - # The follow-up. + # The follow-up. In the meanwhile the loading bar keeps counting, this is expected because it does not get killed yet... show_connection_failure # Kill the bash process, this stops the background counting of the loading bar. While exiting gracefully! pkill -f bash & - echo "test" # Gracefully exit. exit 0 fi } # Call main function -main \ No newline at end of file +main