Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/tutorials/setup-hcloud-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Install them by extracting the archive and moving the binary to a directory in y
On a 64-bit Linux system, it could look something like this:

```bash
curl -LO https://github.com/hetznercloud/cli/releases/download/v1.51.0/hcloud-linux-amd64.tar.gz
sudo tar -C /usr/local/bin -xzf hcloud-linux-amd64.tar.gz
curl -sSLO https://github.com/hetznercloud/cli/releases/download/v1.51.0/hcloud-linux-amd64.tar.gz
sudo tar -C /usr/local/bin --no-same-owner -xzf hcloud-linux-amd64.tar.gz hcloud
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could also try to fix this on the goreleaser side using builds_info: https://goreleaser.com/customization/archive/

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure which user & group ID we should choose there, as that highly depends on the users local setup.

rm hcloud-linux-amd64.tar.gz
```

Expand Down