1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

update: only update on a valid affirmative input (#9062)

Co-authored-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
alexagnelli
2020-06-28 18:34:02 +02:00
committed by GitHub
parent 6152ac30be
commit 48b98b957e

View File

@@ -79,8 +79,8 @@ function update_ohmyzsh() {
read -r -k 1 option
[[ "$option" != $'\n' ]] && echo
case "$option" in
[yY$'\n']) update_ohmyzsh ;;
[nN]) update_last-updated_file ;;
*) update_ohmyzsh ;;
esac
fi
}