Skip to content

Commit

Permalink
use curl instead of wget
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed Nov 2, 2024
1 parent c7c9de2 commit aa1bfa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/mps/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Hello, World!",
"name": "JetBrains MPS",
"id": "mps",
"version": "1.0.0",
"description": "Installs JetBrains MPS",
Expand Down
4 changes: 2 additions & 2 deletions src/mps/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ echo "The effective dev container containerUser's home directory is '$_CONTAINER
(
mkdir /tmp/mps
cd /tmp/mps
wget "https://download.jetbrains.com/mps/${MPS_MAJOR_VERSION}/MPS-${MPS_VERSION}.tar.gz"
tar -xf $(ls | head -n 1)
curl -o mps.tar.gz "https://download.jetbrains.com/mps/${MPS_MAJOR_VERSION}/MPS-${MPS_VERSION}.tar.gz"
tar -xf mps.tar.gz
mv "MPS $MPS_MAJOR_VERSION" "/mps"
)

Expand Down

0 comments on commit aa1bfa1

Please sign in to comment.