We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f359cd + 9a25f8b commit 81ac499Copy full SHA for 81ac499
cmd/deploy.go
@@ -16,7 +16,7 @@ func newDeployCmd(app *App) *cobra.Command {
16
var shouldDelete bool
17
18
deploy := &cobra.Command{
19
- Use: "deploy <config>",
+ Use: "deploy <config-file>",
20
Short: "Deploy records from a config file",
21
Long: `Deploys DNS records from a YAML config file by deleting existing records and
22
creating new records.`,
cmd/print.go
@@ -10,7 +10,7 @@ import (
10
11
func newPrintCmd(app *App) *cobra.Command {
12
print := &cobra.Command{
13
- Use: "print",
+ Use: "print <domain>",
14
Short: "Print existing records",
15
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
0 commit comments