mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
Fix conditional in uninstall prompt
This commit is contained in:
parent
519d043496
commit
37e403708c
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
read -r -p "Are you sure you want to remove Oh My Zsh? [y/N] " confirmation
|
||||
if [ $confirmation = y ] && [ $confirmation = Y ]
|
||||
if [ $confirmation = y ] || [ $confirmation = Y ]
|
||||
then
|
||||
echo "Uninstall cancelled"
|
||||
exit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue