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
Downloading helm client on Mac will always download amd64 binaries.
fun getOperatingSystemClassifier() = when { osName.startsWith("Mac OS X") -> "darwin-amd64"
I think this should easily allow downloading arm64 binaries when appropriate.
fun getOperatingSystemClassifier() = when { osName.startsWith("Mac OS X") -> when (osArch) { "aarch64" -> "darwin-arm64" else -> "darwin-amd64" }
The text was updated successfully, but these errors were encountered:
any progress? should I open a MR?
Sorry, something went wrong.
@gwidion - if you have changes you'd like to suggest, please feel free to open a pull request! 👍
imanushin
No branches or pull requests
Downloading helm client on Mac will always download amd64 binaries.
I think this should easily allow downloading arm64 binaries when appropriate.
The text was updated successfully, but these errors were encountered: