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/heroku-cli/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Heroku CLI (via cli-assets.heroku.com)",
"id": "heroku-cli",
"version": "1.0.4",
"version": "1.0.5",
"description": "Heroku CLI allows you to interact with the Heroku API via the command line (version 8 and above)",
"documentationURL": "https://github.com/devcontainers-extra/features/tree/main/src/heroku-cli",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/heroku-cli/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ rm -rf /var/lib/apt/lists/*
ARCH="$(uname -m)"
if [ "$ARCH" == "x86_64" ]; then
ARCH=x64
elif [[ "$ARCH" == "aarch64" || "$ARCH" == "arm64" ]]; then
ARCH=arm64
elif [[ "$ARCH" == aarch* ]]; then
ARCH=arm
elif [[ "$ARCH" == "arm64" ]]; then
ARCH=arm64
else
echo -e "unsupported arch: $ARCH"
exit 1
Expand Down