Skip to content

Commit

Permalink
install wget
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed Nov 2, 2024
1 parent 3a66be4 commit 0f3289c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/mps/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ echo "The effective dev container containerUser's home directory is '$_CONTAINER
# install packages
(
apt-get update -y
apt-get -y install --no-install-recommends curl ca-certificates
update-ca-certificates
apt-get -y install --no-install-recommends wget
mkdir /tmp/mps
cd /tmp/mps
curl -o mps.tar.gz "https://download.jetbrains.com/mps/${MPS_MAJOR_VERSION}/MPS-${MPS_VERSION}.tar.gz"
tar -xf mps.tar.gz
wget "https://download.jetbrains.com/mps/${MPS_MAJOR_VERSION}/MPS-${MPS_VERSION}.tar.gz"
tar -xf $(ls | head -n 1)
mv "MPS $MPS_MAJOR_VERSION" "/mps"
)

Expand Down

0 comments on commit 0f3289c

Please sign in to comment.