mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 20:30:09 +00:00
Ask for confirmation before uninstall
Prompt the user before removing oh-my-zsh from the system
This commit is contained in:
parent
f3fa41834d
commit
6b73f5ec75
1 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
read -r -p "Are you sure you want to remove Oh My Zsh? [y/N] " confirmation
|
||||
if ! [[ $confirmation =~ ^[yY]$ ]]
|
||||
then
|
||||
echo "Uninstall cancelled"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "Removing ~/.oh-my-zsh"
|
||||
if [ -d ~/.oh-my-zsh ]
|
||||
then
|
||||
|
|
Loading…
Reference in a new issue