summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFahim2014-12-09 16:29:41 +0530
committerFahim2014-12-09 16:29:41 +0530
commit0c9f3b3885338be0420773ac2007d8ac54aa7412 (patch)
tree786b8b062cc8e4ad6a2a39294d02777c4ec4cb78
parent4091c0299d01e7b0a44ceb4a7760771d7ae1f858 (diff)
downloadFreeEDA-0c9f3b3885338be0420773ac2007d8ac54aa7412.tar.gz
FreeEDA-0c9f3b3885338be0420773ac2007d8ac54aa7412.tar.bz2
FreeEDA-0c9f3b3885338be0420773ac2007d8ac54aa7412.zip
Subject: Made few changes in uninstallFreeEDA.shHEADmaster
Description: Remove uninstallation of python as it could affect other software which depend on python
-rwxr-xr-xuninstallFreeEDA.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/uninstallFreeEDA.sh b/uninstallFreeEDA.sh
index cde5915..02115f4 100755
--- a/uninstallFreeEDA.sh
+++ b/uninstallFreeEDA.sh
@@ -21,15 +21,15 @@ done < installed_location
-#Removing python,ngspice and kicad from synaptic
+#Removing ngspice and kicad from synaptic
-echo -n "This will uninstall python,ngspice and kicad. Are you sure to uninstall it (y/n): "
+echo -n "This will uninstall ngspice and kicad. Are you sure to uninstall it (y/n): "
read answer
if [ $answer == "y" -o $answer == "Y" ];then
- sudo apt-get purge kicad python ngspice
+ sudo apt-get purge kicad ngspice
else
- echo "Uninstallation script completed without uninstalling python,kicad and ngspice"
+ echo "Uninstallation script completed without uninstalling kicad and ngspice"
exit 0;
fi