summaryrefslogtreecommitdiff
path: root/uninstallFreeEDA.sh
diff options
context:
space:
mode:
Diffstat (limited to 'uninstallFreeEDA.sh')
-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