Skip to content

Commit

Permalink
Merge pull request #11171 from szampardi/main
Browse files Browse the repository at this point in the history
fix #11170 add newline in cmd/compose/build.go fmt.Fprint
  • Loading branch information
glours committed Nov 8, 2023
2 parents 2945532 + 646a8fc commit c1a9ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/compose/build.go
Expand Up @@ -96,7 +96,7 @@ func buildCommand(p *ProjectOptions, dockerCli command.Cli, backend api.Service)
opts.ssh = "default"
}
if cmd.Flags().Changed("progress") && opts.ssh == "" {
fmt.Fprint(os.Stderr, "--progress is a global compose flag, better use `docker compose --progress xx build ...")
fmt.Fprint(os.Stderr, "--progress is a global compose flag, better use `docker compose --progress xx build ...\n")
}
return runBuild(ctx, dockerCli, backend, opts, args)
}),
Expand Down

0 comments on commit c1a9ffa

Please sign in to comment.