From 0c9f3b3885338be0420773ac2007d8ac54aa7412 Mon Sep 17 00:00:00 2001 From: Fahim Date: Tue, 9 Dec 2014 16:29:41 +0530 Subject: Subject: Made few changes in uninstallFreeEDA.sh Description: Remove uninstallation of python as it could affect other software which depend on python --- uninstallFreeEDA.sh | 8 ++++---- 1 file 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 -- cgit