浏览代码

Ask for confirmation before uninstall

Prompt the user before removing oh-my-zsh from the system
Rodrigo Chiossi 9 年之前
父节点
当前提交
6b73f5ec75
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      tools/uninstall.sh

+ 7 - 0
tools/uninstall.sh

@@ -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