diff options
author | rahulp13 | 2020-12-17 00:52:29 +0530 |
---|---|---|
committer | rahulp13 | 2020-12-17 00:52:29 +0530 |
commit | ca83e94e61353e2cce160f6fa822f01d7d8b0393 (patch) | |
tree | ac5238c7f33c4f443c68484cebd77301cfa40c8d | |
parent | 415f460d62f76d3d6b70a65b57a36bb361302424 (diff) | |
download | eSim-ca83e94e61353e2cce160f6fa822f01d7d8b0393.tar.gz eSim-ca83e94e61353e2cce160f6fa822f01d7d8b0393.tar.bz2 eSim-ca83e94e61353e2cce160f6fa822f01d7d8b0393.zip |
fixed key issue with bionic repo
-rwxr-xr-x | Ubuntu/install-eSim.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Ubuntu/install-eSim.sh b/Ubuntu/install-eSim.sh index bedd34cb..27783e41 100755 --- a/Ubuntu/install-eSim.sh +++ b/Ubuntu/install-eSim.sh @@ -15,7 +15,7 @@ # AUTHOR: Fahim Khan, Rahul Paknikar, Saurabh Bansode # ORGANIZATION: eSim Team, FOSSEE, IIT Bombay # CREATED: Wednesday 15 July 2015 15:26 -# REVISION: Wednesday 15 December 2020 23:50 +# REVISION: Wednesday 16 December 2020 23:50 #=============================================================================== # All variables goes here @@ -90,7 +90,8 @@ function addKicadPPA echo "Package: kicad" | sudo tee -a /etc/apt/preferences.d/preferences > /dev/null echo "Pin: version 4.0.7*" | sudo tee -a /etc/apt/preferences.d/preferences > /dev/null echo "Pin-Priority: 501" | sudo tee -a /etc/apt/preferences.d/preferences > /dev/null - sudo add-apt-repository --yes "deb http://in.archive.ubuntu.com/ubuntu/ bionic main universe" + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32 + sudo add-apt-repository --yes "deb http://archive.ubuntu.com/ubuntu/ bionic main universe" else sudo add-apt-repository --yes ppa:js-reynaud/kicad-4 fi @@ -131,7 +132,7 @@ function installDependency echo "Installing KiCad..........................." sudo apt-get install -y --no-install-recommends kicad=4.0.7* if [[ $(lsb_release -rs) == 20.* ]]; then - sudo add-apt-repository -r "deb http://in.archive.ubuntu.com/ubuntu/ bionic main universe" + sudo add-apt-repository -ry "deb http://archive.ubuntu.com/ubuntu/ bionic main universe" fi } |