From dfbcc5b60776fd6e3985ea61ca4cfbb63632a3a1 Mon Sep 17 00:00:00 2001 From: satotake Date: Sun, 20 Jun 2021 09:28:58 +0000 Subject: [PATCH] Add help message --- cmd/compose/pull.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/compose/pull.go b/cmd/compose/pull.go index ae9d59dd06..6af92262c7 100644 --- a/cmd/compose/pull.go +++ b/cmd/compose/pull.go @@ -65,8 +65,8 @@ func pullCommand(p *projectOptions, backend api.Service) *cobra.Command { cmd.Flags().BoolVar(&opts.parallel, "no-parallel", true, "DEPRECATED disable parallel pulling.") flags.MarkHidden("no-parallel") //nolint:errcheck cmd.Flags().BoolVar(&opts.ignorePullFailures, "ignore-pull-failures", false, "Pull what it can and ignores images with pull failures") - cmd.Flags().BoolVar(&opts.dryRun, "dry-run", false, "TODO") - cmd.Flags().StringVar(&opts.format, "format", "", "TODO") + cmd.Flags().BoolVar(&opts.dryRun, "dry-run", false, "Calc and print effects of execution of pull command without any actual effects") + cmd.Flags().StringVar(&opts.format, "format", "", `Format the output. Only compatible with "--dry-run". Values: [pretty | json]. (Default: pretty)`) return cmd }