Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/elixir-asdf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Note: Ensure that `unzip` is installed beforehand as it is a required dependenc
```json
"features": {
"ghcr.io/rabdulwahhab/devcontainer-features/elixir-asdf:1": {
"version": "v1.19.4-otp-28"
"version": "1.19.4-otp-28"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/elixir-asdf/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Elixir (via asdf)",
"id": "elixir-asdf",
"version": "1.0.1",
"version": "1.0.2",
"description": "Elixir is a dynamic, functional language for building scalable and maintainable applications.",
"documentationURL": "http://github.com/rabdulwahhab/devcontainer-features/tree/main/src/elixir-asdf",
"options": {
Expand Down
4 changes: 4 additions & 0 deletions src/elixir-asdf/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ set -ex

VERSION=${VERSION:-"latest"}

if [ "${VERSION}" != "latest" ]; then
VERSION=${VERSION#v}
fi

# Clean up
rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion test/elixir-asdf/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"kerlConfigureOptions": "--disable-debug --without-javac"
},
"elixir-asdf": {
"version": "v1.19.4-otp-28"
"version": "1.19.4-otp-28"
}
}
}
Expand Down
Loading