Skip to content

Commit cff9e44

Browse files
authored
Update installation guide
1 parent 28db23a commit cff9e44

1 file changed

Lines changed: 14 additions & 7 deletions

File tree

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,25 @@ Please see [Commands Manual](https://devopsctl.github.io/gitlabctl/) for a nice
1515

1616
## Installing
1717

18-
Get the download link of your preferred platform binary from [RELEASES](https://github.com/devopsctl/gitlabctl/releases) and ensure that it is downloaded in one of your `$PATH` directories.
18+
Get the download link of your preferred platform binary from [RELEASES](https://github.com/devopsctl/gitlabctl/releases).
19+
20+
### OSX
1921

2022
```bash
21-
# This is an example manual installation
22-
wget https://github.com/devopsctl/gitlabctl/releases/download/v0.0.1/gitlabctl-darwin-amd64
23-
mv gitlabctl-darwin-amd64 /usr/local/bin/gitlabctl && chmod +x /usr/local/bin/gitlabctl
23+
curl -Lo gitlabctl https://github.com/devopsctl/gitlabctl/releases/download/${VERSION}/gitlabctl-darwin-amd64 && chmod +x gitlabctl && sudo mv gitlabctl /usr/local/bin/
24+
```
25+
26+
### Linux
2427

25-
# Test the command
26-
gitlabctl --version
28+
```bash
29+
curl -Lo gitlabctl https://github.com/devopsctl/gitlabctl/releases/download/${VERSION}/gitlabctl-linux-amd64 && chmod +x gitlabctl && sudo mv gitlabctl /usr/local/bin/
2730
```
2831

29-
For __Golang__ developers, you can get the latest binary using `go get github.com/devopsctl/gitlabctl`.
32+
### Windows
33+
34+
Download the gitlabctl-windows-amd64.exe file, rename it to gitlabctl.exe and add it to your path.
35+
36+
### Auto Complete
3037

3138
Enable auto complete for __bash__ or __zsh__ shell. ❤️
3239

0 commit comments

Comments
 (0)