Skip to content

Commit

Permalink
Merge pull request #36 from gkiki90/help_messages
Browse files Browse the repository at this point in the history
Help messages
  • Loading branch information
viktorbenei committed Jul 22, 2015
2 parents b741ecf + 8c4a429 commit 5040a2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var (
{
Name: "setup",
ShortName: "s",
Usage: "",
Usage: "Initialize the specified collection, it's required before using a collection.",
Action: setup,
Flags: []cli.Flag{
flCollection,
Expand All @@ -16,7 +16,7 @@ var (
{
Name: "update",
ShortName: "u",
Usage: "",
Usage: "Update the collection, if no --collection flag provided, all collections will updated.",
Action: update,
Flags: []cli.Flag{
flCollection,
Expand All @@ -25,7 +25,7 @@ var (
{
Name: "download",
ShortName: "d",
Usage: "",
Usage: "Download the step with provided --id and --version, from specified --collection, into local step downloads cache. If no --version defined, the latest version of the step (latest found in the collection) will be downloaded into the cache.",
Action: download,
Flags: []cli.Flag{
flCollection,
Expand All @@ -37,7 +37,7 @@ var (
{
Name: "activate",
ShortName: "a",
Usage: "",
Usage: "Copy the step with specified --id, and --version, into provided path. If --version flag is not set, the latest version of the step will be used. If --copyyml flag is set, step.yml will be copied to the given path.",
Action: activate,
Flags: []cli.Flag{
flCollection,
Expand Down
2 changes: 1 addition & 1 deletion cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ var (
flCopyYML = cli.StringFlag{
Name: CopyYMLKey + ", " + copyYMLKeyShort,
Value: "",
Usage: "",
Usage: "Path where the selected/activated step's step.yml will be copied.",
}
flUpdate = cli.BoolFlag{
Name: UpdateKey + ", " + updateKeyShort,
Expand Down

0 comments on commit 5040a2b

Please sign in to comment.