Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
update cmd decriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnirtl committed Feb 7, 2020
1 parent c7ae9fe commit 8c2f06a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/commands/inspectcmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

var InspectCommand = &cobra.Command{
Use: "inspect",
Short: "Print detailed output of previously executed command [up|down].",
Short: "Print detailed output of previously executed command [up|down|pull].",
Long: "-",
Run: func(cmd *cobra.Command, args []string) {
filepath := config.GetLogfile()
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/logscmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var tailFlag int

var LogsCommand = &cobra.Command{
Use: "logs [service...]",
Short: "Logs output of either all or only selected services.",
Short: "Logs output of all or only selected services.",
Long: "-",
Run: func(cmd *cobra.Command, args []string) {
activeEnv := viper.GetString("active")
Expand Down
4 changes: 2 additions & 2 deletions internal/commands/versioncmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
// VersionCommand is the top level version command
var VersionCommand = &cobra.Command{
Use: "version",
Short: "Print the version number of Dockma.",
Long: "Print the version number of Dockma.",
Short: "Print the version number of dockma.",
Long: "-",
PersistentPreRun: func(cmd *cobra.Command, args []string) {},
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("🐳 Dockma v0.0.0")
Expand Down

0 comments on commit 8c2f06a

Please sign in to comment.