mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 23:40:39 +01:00
Fix backwards logic in uninstaller once and for all
Really this time :P Fixes #4533
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
read -r -p "Are you sure you want to remove Oh My Zsh? [y/N] " confirmation
|
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
|
then
|
||||||
echo "Uninstall cancelled"
|
echo "Uninstall cancelled"
|
||||||
exit
|
exit
|
||||||
|
|||||||
Reference in New Issue
Block a user