Add -all to help text and flags

This commit is contained in:
Preetha Appan 2019-05-15 21:16:57 -05:00
parent 26ea951627
commit 2c5c16111e
No known key found for this signature in database
GPG Key ID: 9F7C19990A50EAFC
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,10 @@ Deployments Options:
-verbose
Display full information.
-all-allocs
Display all deployments matching the job ID, including those
from an older instance of the job.
`
return strings.TrimSpace(helpText)
}
@ -50,6 +54,7 @@ func (c *JobDeploymentsCommand) AutocompleteFlags() complete.Flags {
"-t": complete.PredictAnything,
"-latest": complete.PredictNothing,
"-verbose": complete.PredictNothing,
"-all": complete.PredictNothing,
})
}