Use rawjson for the build backend.

Signed-off-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Felix Fontein 2024-03-16 17:10:58 +01:00 committed by Nicolas De loof
parent 2db04c1e40
commit ace69c96a7
1 changed files with 1 additions and 2 deletions

View File

@ -67,10 +67,9 @@ func (opts buildOptions) toAPIBuildOptions(services []string) (api.BuildOptions,
builderName = os.Getenv("BUILDX_BUILDER")
}
// The build backends do not have a "json" progress; use "plain" instead
uiMode := ui.Mode
if uiMode == ui.ModeJSON {
uiMode = ui.ModePlain
uiMode = "rawjson"
}
return api.BuildOptions{
Pull: opts.pull,