Skip to content

Commit 60607ef

Browse files
mshawcrofttqchen
authored andcommitted
[DOCKER] Fix missing apt https transport support (#3735)
* [DOCKER] Fix missing apt https transport support * [DOCKER] Drop superflous explicit sudo's
1 parent a200cca commit 60607ef

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docker/install/ubuntu_install_chisel.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ set -e
2020
set -u
2121
set -o pipefail
2222

23+
# The https:// source added below required an apt https transport
24+
# support.
25+
apt-get install apt-transport-https
26+
2327
# Install the necessary dependencies for Chisel
24-
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
25-
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
26-
sudo apt-get update
27-
sudo apt-get install -y verilator sbt
28+
echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
29+
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
30+
apt-get update
31+
apt-get install -y verilator sbt

0 commit comments

Comments
 (0)