diff options
author | rahulp13 | 2020-03-21 12:43:11 +0530 |
---|---|---|
committer | rahulp13 | 2020-03-21 12:43:11 +0530 |
commit | adb3ed83499095ccb73ceecb1f62d83901826e45 (patch) | |
tree | c43fd85986ec31e0bb11aa5d6619504f4ebf0bee /Debian | |
parent | 99b08f5300602a7ee5e4645bf79a3f9f3dcc8a15 (diff) | |
download | eSim-adb3ed83499095ccb73ceecb1f62d83901826e45.tar.gz eSim-adb3ed83499095ccb73ceecb1f62d83901826e45.tar.bz2 eSim-adb3ed83499095ccb73ceecb1f62d83901826e45.zip |
provide execute permission to nghdl script
Diffstat (limited to 'Debian')
-rwxr-xr-x | Debian/install-eSim.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Debian/install-eSim.sh b/Debian/install-eSim.sh index 26a7338a..d7a3c572 100755 --- a/Debian/install-eSim.sh +++ b/Debian/install-eSim.sh @@ -55,6 +55,7 @@ function installNghdl unzip nghdl-master.zip mv nghdl-master nghdl cd nghdl/ + chmod +x install-nghdl.sh ./install-nghdl.sh --install if [ $? -ne 0 ];then @@ -315,6 +316,7 @@ elif [ $option == "--uninstall" ];then rm -rf library/modelParamXML/Nghdl/* cd nghdl/ if [ $? -eq 0 ];then + chmod +x install-nghdl.sh ./install-nghdl.sh --uninstall cd ../ rm -rf nghdl |