diff options
author | Fahim | 2014-12-09 16:29:41 +0530 |
---|---|---|
committer | Fahim | 2014-12-09 16:29:41 +0530 |
commit | 0c9f3b3885338be0420773ac2007d8ac54aa7412 (patch) | |
tree | 786b8b062cc8e4ad6a2a39294d02777c4ec4cb78 | |
parent | 4091c0299d01e7b0a44ceb4a7760771d7ae1f858 (diff) | |
download | FreeEDA-master.tar.gz FreeEDA-master.tar.bz2 FreeEDA-master.zip |
Description: Remove uninstallation of python as it could affect other
software which depend on python
-rwxr-xr-x | uninstallFreeEDA.sh | 8 |
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 |