We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like that the current Heroku CLI features downloads an older version of the Heroku CLI, even if the version argument is latest
latest
features/src/heroku-cli/install.sh
Line 53 in 9a1d24b
It will download 7.69.1 version, instead of 8.11.5 (as of today)
7.69.1
8.11.5
That's probably because Heroku tar files position is changed.
For example, if you go here: https://devcenter.heroku.com/articles/heroku-cli#tarballs you'll see that the Linux x64 tar file is located here:
https://cli-assets.heroku.com/channels/stable/heroku-linux-x64.tar.gz
Instead, this feature will try to download it from here:
https://cli-assets.heroku.com/heroku-linux-x64.tar.gz
The latter is still a valid URL, but for an old version of the Heroku CLI
The text was updated successfully, but these errors were encountered:
The problem of having an older version of Heroku CLI is that it raises an error on my container
root ➜ /app (master) $ heroku qemu-arm: Could not open '/lib/ld-linux-armhf.so.3': No such file or directory
It looks like this error has been fixed in newer versions of the CLI
Sorry, something went wrong.
This project is not associated with the devcontainer project and appears to have been abandoned #628 . The official project has removed all devcontainer-contrib features from their listing. devcontainers/devcontainers.github.io#451. There is a fork that is being worked on to update and maintain the features https://github.com/devcontainers-extra/features
No branches or pull requests
It looks like that the current Heroku CLI features downloads an older version of the Heroku CLI, even if the version argument is
latest
features/src/heroku-cli/install.sh
Line 53 in 9a1d24b
It will download
7.69.1
version, instead of8.11.5
(as of today)That's probably because Heroku tar files position is changed.
For example, if you go here: https://devcenter.heroku.com/articles/heroku-cli#tarballs you'll see that the Linux x64 tar file is located here:
https://cli-assets.heroku.com/channels/stable/heroku-linux-x64.tar.gz
Instead, this feature will try to download it from here:
https://cli-assets.heroku.com/heroku-linux-x64.tar.gz
The latter is still a valid URL, but for an old version of the Heroku CLI
The text was updated successfully, but these errors were encountered: