diff --git a/cmd/plan.go b/cmd/plan.go index fcedc63..acfc06d 100644 --- a/cmd/plan.go +++ b/cmd/plan.go @@ -13,7 +13,7 @@ import ( "gitlab.com/qm64/backpack/templating" ) -// planCmd represents the run command +// planCmd represents the plan command var planCmd = &cobra.Command{ Use: "plan [path]", Aliases: []string{"diff", "dry-run"}, diff --git a/cmd/status.go b/cmd/status.go index 1ebc463..fcba77d 100644 --- a/cmd/status.go +++ b/cmd/status.go @@ -22,7 +22,10 @@ var statusCmd = &cobra.Command{ Args: cobra.ExactArgs(1), Short: "Check the status of all the jobs in a pack", Long: `Run this command to know the status of all the jobs in a pack. It will -check and provide useful information. +check and provide useful information. By default it shows the allocations that +are running, or the first allocation available. If you want to see all the +previous allocation you can use the option --all (or -a). + `, Run: statusRun, } diff --git a/cmd/stop.go b/cmd/stop.go index bc80011..32a47d1 100644 --- a/cmd/stop.go +++ b/cmd/stop.go @@ -13,7 +13,7 @@ import ( "gitlab.com/qm64/backpack/templating" ) -// stopCmd represents the run command +// stopCmd represents the stop command var stopCmd = &cobra.Command{ Use: "stop [path]", Aliases: []string{"uninstall", "delete"}, diff --git a/cmd/unpack_docs.go b/cmd/unpack_docs.go index 651ca9c..a7d0c31 100644 --- a/cmd/unpack_docs.go +++ b/cmd/unpack_docs.go @@ -11,7 +11,7 @@ import ( "gitlab.com/qm64/backpack/pkg" ) -// docsCmd represents the docs command +// docsCmd represents the unpack docs command var docsCmd = &cobra.Command{ Use: "docs [path]", Args: cobra.ExactArgs(1),