Skip to content

Commit c1a9ffa

Browse files
authored
Merge pull request docker#11171 from szampardi/main
fix docker#11170 add newline in cmd/compose/build.go fmt.Fprint
2 parents 2945532 + 646a8fc commit c1a9ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/compose/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func buildCommand(p *ProjectOptions, dockerCli command.Cli, backend api.Service)
9696
opts.ssh = "default"
9797
}
9898
if cmd.Flags().Changed("progress") && opts.ssh == "" {
99-
fmt.Fprint(os.Stderr, "--progress is a global compose flag, better use `docker compose --progress xx build ...")
99+
fmt.Fprint(os.Stderr, "--progress is a global compose flag, better use `docker compose --progress xx build ...\n")
100100
}
101101
return runBuild(ctx, dockerCli, backend, opts, args)
102102
}),

0 commit comments

Comments
 (0)