diff options
author | Fahim | 2016-02-11 11:08:45 +0530 |
---|---|---|
committer | Fahim | 2016-02-11 11:08:45 +0530 |
commit | f50deb7edfb9097d73cd9cbb9e9b2591505edeef (patch) | |
tree | 11430aba8193f557748b225fb9371f38d8e307d4 /install-linux.sh | |
parent | 263c684283f4d02c1d2367e9720253e68dbaf93d (diff) | |
download | eSim-f50deb7edfb9097d73cd9cbb9e9b2591505edeef.tar.gz eSim-f50deb7edfb9097d73cd9cbb9e9b2591505edeef.tar.bz2 eSim-f50deb7edfb9097d73cd9cbb9e9b2591505edeef.zip |
Subject: Added library for Plot
Description: Added library for Plot and accordingly did the changes in
Kicad.pro
Diffstat (limited to 'install-linux.sh')
-rwxr-xr-x | install-linux.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install-linux.sh b/install-linux.sh index 30b9fdc0..2a57a502 100755 --- a/install-linux.sh +++ b/install-linux.sh @@ -179,7 +179,7 @@ function createDesktopStartScript #Make esim.desktop file executable sudo chmod 755 esim.desktop #Copy desktop icon file to Desktop - cp -vp esim.desktop $HOME/Desktop/eSim + cp -vp esim.desktop $HOME/Desktop/ #Copying logo.png to .esim directory to access as icon @@ -272,7 +272,7 @@ elif [ $option == "--uninstall" ];then echo -n "Are you sure ? As it will remove complete eSim including your subcircuit and model library packages(y/n):" read getConfirmation if [ $getConfirmation == "y" -o $getConfirmation == "Y" ];then - sudo rm -rf $HOME/.esim $HOME/Desktop/eSim esim-start.sh esim.desktop /usr/bin/esim + sudo rm -rf $HOME/.esim $HOME/Desktop/esim.desktop esim-start.sh esim.desktop /usr/bin/esim if [ $? -eq 0 ];then echo "Uninstalled successfully" else |