Skip to content

Commit af93708

Browse files
committed
fix: application usage description
1 parent d6da06a commit af93708

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@
22

33
Lightweight `CLI` to create GitHub installation tokens for GitHub Apps.
44

5-
[![ci](https://github.com/jhagestedt/ghapp/actions/workflows/ci.yml/badge.svg)](https://github.com/jhagestedt/ghapp/actions/workflows/ci.yml)
5+
```
6+
NAME:
7+
ghapp - GitHub App CLI
8+
9+
USAGE:
10+
ghapp [global options] command [command options] [arguments...]
11+
12+
COMMANDS:
13+
token, t Create a GitHub App installation token
14+
help, h Shows a list of commands or help for one command
15+
```
616

717
## 🚀 Install
818

919
The packaged binaries of `ghapp` can be found on the [releases](https://github.com/jhagestedt/ghapp/releases) of this repository.
1020

11-
### 🐧 Linux
21+
#### 🐧 Linux
1222

1323
```bash
1424
curl -L "https://github.com/jhagestedt/ghapp/releases/latest/download/ghapp_linux_amd64" \
1525
-o ./ghapp && chmod +x ./ghapp
1626
```
1727

18-
### 🍏 MacOS
28+
#### 🍏 MacOS
1929

2030
```bash
2131
curl -L "https://github.com/jhagestedt/ghapp/releases/latest/download/ghapp_darwin_amd64" \

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func main() {
2323
}
2424
app := &cli.App{
2525
Name: "ghapp",
26-
Usage: "GitHub app cli",
26+
Usage: "GitHub App CLI",
2727
Version: version,
2828
Commands: []*cli.Command{
2929
{

0 commit comments

Comments
 (0)