Skip to content

Commit

Permalink
Fix 16k coverage command output limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Nadler committed Jan 28, 2019
1 parent 80881dd commit 8a8c36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -46,11 +46,11 @@ func getCommandOutput(commandString string) chan float64 {
fmt.Println(lineText)
}
}
cmd.Wait()
}(reader)
if err := cmd.Start(); nil != err {
log.Fatalf("Error starting program: %s, %s", cmd.Path, err.Error())
}
cmd.Wait()
return coverageFloatChannel
}

0 comments on commit 8a8c36e

Please sign in to comment.