Skip to content

Commit

Permalink
Refactor command initialization, better completion, Apple Silicon sup…
Browse files Browse the repository at this point in the history
…port (#116)
  • Loading branch information
majst01 authored Oct 1, 2021
1 parent a0ddc94 commit 4a2d040
Show file tree
Hide file tree
Showing 30 changed files with 1,506 additions and 1,808 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Download locations:

- [metalctl-linux-amd64](https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-linux-amd64)
- [metalctl-darwin-amd64](https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-darwin-amd64)
- [metalctl-darwin-arm64](https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-darwin-arm64)
- [metalctl-windows-amd64](https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-windows-amd64)

### Installation on Linux
Expand All @@ -20,12 +21,22 @@ sudo mv metalctl-linux-amd64 /usr/local/bin/metalctl

### Installation on MacOS

For x86 based Macs:

```bash
curl -LO https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-darwin-amd64
chmod +x metalctl-darwin-amd64
sudo mv metalctl-darwin-amd64 /usr/local/bin/metalctl
```

For Apple Silicon (M1) based Macs:

```bash
curl -LO https://github.com/metal-stack/metalctl/releases/download/v0.8.3/metalctl-darwin-arm64
chmod +x metalctl-darwin-arm64
sudo mv metalctl-darwin-arm64 /usr/local/bin/metalctl
```

### Installation on Windows

```bash
Expand Down
189 changes: 0 additions & 189 deletions cmd/completion.go

This file was deleted.

Loading

0 comments on commit 4a2d040

Please sign in to comment.