Skip to content

Commit

Permalink
Install curl in ubuntu_install_core.sh
Browse files Browse the repository at this point in the history
Rationalize the installation of curl among all the docker install scripts.
  • Loading branch information
Ramana Radhakrishnan committed Jun 23, 2021
1 parent 9f350d3 commit 662f0f4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion docker/install/ubuntu_install_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set -o pipefail
apt-get update && apt-get install -y --no-install-recommends \
git make libgtest-dev cmake wget unzip libtinfo-dev libz-dev\
libcurl4-openssl-dev libssl-dev libopenblas-dev g++ sudo \
apt-transport-https graphviz pkg-config
apt-transport-https graphviz pkg-config curl


cd /usr/src/gtest && cmake CMakeLists.txt && make && cp *.a /usr/lib
1 change: 0 additions & 1 deletion docker/install/ubuntu_install_nodejs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ set -u
set -o pipefail

apt-get update
apt-get install -y curl

# The node install script fetched and executed here will update the
# apt source list, hence the second apt-get update is necessary.
Expand Down
1 change: 0 additions & 1 deletion docker/install/ubuntu_install_rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ set -e
set -u
set -o pipefail

apt-get update && apt-get install -y --no-install-recommends curl

export RUSTUP_HOME=/opt/rust
export CARGO_HOME=/opt/rust
Expand Down

0 comments on commit 662f0f4

Please sign in to comment.