Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
octavore committed Mar 9, 2014
1 parent 39a60a3 commit 4d5d731
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# pk

`pk` is a command-line tool for interacting with the Pancake.io API.
`pk` is a command-line tool for interacting with Pancake.

## Usage

```sh
pk login

pk add-key [-key-path <path to ssh key>]
pk list-keys
pk remove-key

pk create-project [-static <make project static>]
pk create-project [ -dropbox=true (default: false) ]
pk list-projects
pk delete-project

Expand Down
2 changes: 1 addition & 1 deletion cmd_login.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ var cmdLogin = &cmd{
return nil
},
usage: func() string {
return "log in to pancake.io"
return "log in to pancake"
},
}
2 changes: 1 addition & 1 deletion cmd_projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var cmdProjectCreate = &cmd{
}

func init() {
cmdProjectCreate.flags.BoolVar(&argProjectCreateDropbox, "dropbox", false, "creates a classic dropbox git-based Pancake.io project")
cmdProjectCreate.flags.BoolVar(&argProjectCreateDropbox, "dropbox", false, "creates a classic dropbox-based Pancake project (default: git-based project)")
}

var cmdProjectsList = &cmd{
Expand Down

0 comments on commit 4d5d731

Please sign in to comment.