Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit dfbcc5b

Browse files
authored
Add help message
1 parent 72713ce commit dfbcc5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cmd/compose/pull.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ func pullCommand(p *projectOptions, backend api.Service) *cobra.Command {
6565
cmd.Flags().BoolVar(&opts.parallel, "no-parallel", true, "DEPRECATED disable parallel pulling.")
6666
flags.MarkHidden("no-parallel") //nolint:errcheck
6767
cmd.Flags().BoolVar(&opts.ignorePullFailures, "ignore-pull-failures", false, "Pull what it can and ignores images with pull failures")
68-
cmd.Flags().BoolVar(&opts.dryRun, "dry-run", false, "TODO")
69-
cmd.Flags().StringVar(&opts.format, "format", "", "TODO")
68+
cmd.Flags().BoolVar(&opts.dryRun, "dry-run", false, "Calc and print effects of execution of pull command without any actual effects")
69+
cmd.Flags().StringVar(&opts.format, "format", "", `Format the output. Only compatible with "--dry-run". Values: [pretty | json]. (Default: pretty)`)
7070
return cmd
7171
}
7272

0 commit comments

Comments
 (0)