fix backslash

This commit is contained in:
arzzen 2025-06-16 14:36:11 +02:00
parent ec6a95d2ef
commit 79c735c814

View file

@ -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