diff options
-rwxr-xr-x | Debian/install-eSim.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Debian/install-eSim.sh b/Debian/install-eSim.sh index f30226aa..26a7338a 100755 --- a/Debian/install-eSim.sh +++ b/Debian/install-eSim.sh @@ -14,7 +14,7 @@ # NOTES: --- # AUTHOR: Fahim Khan, Rahul Paknikar, Saurabh Bansode # ORGANIZATION: FOSSEE at IIT Bombay. -# CREATED: Friday 14 February 2020 16:14 +# CREATED: Wednesday 04 March 2020 16:14 # REVISION: --- # =============================================================================== @@ -99,6 +99,13 @@ function installDependency exit 1 fi + echo "Installing Xpdf............................" + sudo apt-get install -y xpdf + if [ $? -ne 0 ]; then + echo -e "\n\n\"Xpdf\" dependency couldn't be installed.\nKindly resolve above errors and try again." + exit 1 + fi + echo "Installing KiCad..........................." sudo apt install -y --no-install-recommends kicad if [ $? -ne 0 ]; then |