Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 402cbff3 authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

Merge "Handle Scanner errors in kati output filter" am: b1693d3b

am: 5492ba26

Change-Id: Iadcc2a8d82c92542f7e408c70434240ed91143d2
parents 12e02683 5492ba26
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -169,6 +169,11 @@ func katiRewriteOutput(ctx Context, pipe io.ReadCloser) {
	if !haveBlankLine {
		fmt.Fprintln(ctx.Stdout())
	}

	if err := scanner.Err(); err != nil {
		ctx.Println("Error from kati parser:", err)
		io.Copy(ctx.Stderr(), pipe)
	}
}

func runKatiCleanSpec(ctx Context, config Config) {