mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +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:
parent
6152ac30be
commit
48b98b957e
1 changed files with 1 additions and 1 deletions
|
@ -79,8 +79,8 @@ function update_ohmyzsh() {
|
||||||
read -r -k 1 option
|
read -r -k 1 option
|
||||||
[[ "$option" != $'\n' ]] && echo
|
[[ "$option" != $'\n' ]] && echo
|
||||||
case "$option" in
|
case "$option" in
|
||||||
|
[yY$'\n']) update_ohmyzsh ;;
|
||||||
[nN]) update_last-updated_file ;;
|
[nN]) update_last-updated_file ;;
|
||||||
*) update_ohmyzsh ;;
|
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue