Skip to content

Commit

Permalink
Fix conditional in uninstall prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
mcornella committed Oct 21, 2015
1 parent b2010a0 commit 4e42e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/uninstall.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4e42e1f

Please sign in to comment.