builder: print the status of the job that just completed

Этот коммит содержится в:
Damian Gryski 2023-04-17 10:52:16 -07:00 коммит произвёл Ron Evans
родитель 4e9f9e2773
коммит 06e34caa5f

Просмотреть файл

@ -134,7 +134,7 @@ func runJobs(job *compileJob, sema chan struct{}) error {
numRunningJobs-- numRunningJobs--
<-sema <-sema
if jobRunnerDebug { if jobRunnerDebug {
fmt.Println("## finished:", job.description, "(time "+job.duration.String()+")") fmt.Println("## finished:", completed.description, "(time "+completed.duration.String()+")")
} }
if completed.err != nil { if completed.err != nil {
// Wait for any current jobs to finish. // Wait for any current jobs to finish.