From 79c735c8145ec9abe5c61bf2a509d45eef1fa96c Mon Sep 17 00:00:00 2001 From: arzzen Date: Mon, 16 Jun 2025 14:36:11 +0200 Subject: [PATCH] fix backslash --- git-quick-stats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git-quick-stats b/git-quick-stats index 6be52f5..dabc228 100755 --- a/git-quick-stats +++ b/git-quick-stats @@ -1362,9 +1362,9 @@ if [[ "$#" -eq 0 ]]; then while [[ -z "${author}" ]]; do read -r -p "Which author? " author done - commitsCalendarByAuthor "${author}"; showMenu;;\ - q|"\n") exit;;\ - *) clear; optionPicked "Pick an option from the menu"; showMenu;;\ + commitsCalendarByAuthor "${author}"; showMenu;; + q|"\n") exit;; + *) clear; optionPicked "Pick an option from the menu"; showMenu;; esac done fi