From aa4bdfc7b2015c6483761766b1cdb6b37feed099 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Fri, 29 Oct 2021 14:04:39 +0200 Subject: [PATCH] fix: invalid command bug in rollback UI (fixes #131) --- scripts/rollback.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rollback.sh b/scripts/rollback.sh index 531d9ed..a1f74e5 100755 --- a/scripts/rollback.sh +++ b/scripts/rollback.sh @@ -97,7 +97,7 @@ rollback_klipper(){ read -p "Perform action: " action; echo echo -e "${default}" case "$action" in - Q|q) + B|b) clear; advanced_menu; break;; *) clear @@ -108,4 +108,4 @@ rollback_klipper(){ esac done fi -} \ No newline at end of file +}