Skip to content
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

Switch to standalone cobra-cli dependency #888

Closed
wants to merge 1 commit into from
Closed
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/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ You can use the cobra cli to add new commands, the below will describe how to ad
Get cobra cli tool:

```
go get -u github.com/spf13/cobra/cobra
go get -u github.com/spf13/cobra-cli
```

Change to the directory of the command-line tool you are working on:
Expand All @@ -234,7 +234,7 @@ cd ./cmd/armadactl
Use cobra to add new command:

```
cobra add commandName
cobra-cli add commandName
```

You should see a new file appear under `./cmd/armadactl/cmd` with the name you specified in the command.