Skip to content

Commit

Permalink
Merge pull request #8 from jnadler/master
Browse files Browse the repository at this point in the history
Fix 16k coverage command output limit
  • Loading branch information
jpoles1 authored Jan 30, 2019
2 parents bd74a53 + 8a8c36e commit 3ab187c
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
Expand Up @@ -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
}

Expand Down

0 comments on commit 3ab187c

Please sign in to comment.