-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
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
Provide .gz or tar.gz binary for streaming download and extracting #1296
Comments
This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
This is still relevant; how can this action bot be disabled for this issue so that the issue isn't marked stale? |
Changes ------- Changes GitHub releases to handle Mac and Linux binaries slightly differently than Windows. | Operating System | Archive Format | | ---------------- | -------------- | | Mac OS | `tar.gz` | | Linux | `tar.gz` | | Windows | `zip` | Tests ----- I tested with the following commands. ```bash $ goreleaser release --snapshot $ ls -1 dist/*.{zip,tar.gz} dist/databricks_cli_darwin_amd64.tar.gz dist/databricks_cli_darwin_arm64.tar.gz dist/databricks_cli_linux_amd64.tar.gz dist/databricks_cli_linux_arm64.tar.gz dist/databricks_cli_windows_amd64.zip dist/databricks_cli_windows_arm64.zip ``` Related issues -------------- Closes databricks#1296 Co-authored-by: Sam Gleske <sgleske@integralads.com>
Thanks for commenting, I marked the issue to not be autoclosed. We'll discuss adding a |
Thanks and no worries; I also opened a PR which I think resolves the issue. |
Describe the issue
On Linux, you must download a zip file to the local filesystem before unzipping it. With stream formats like tar and gzip you can extract while downloading.
Steps to reproduce the behavior
Expected Behavior
Instead of download, then extract; I would like to download and extract.
OS and CLI version
MacOS, Linux (GNU, Busybox, etc), and BSD distributions provide tar, gzip, and other utilities.
For Windows, zip is probably best.
The text was updated successfully, but these errors were encountered: