From 06e34caa5fa527b8795fc6d72365158ad6f44e17 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Mon, 17 Apr 2023 10:52:16 -0700 Subject: [PATCH] builder: print the status of the job that just completed --- builder/jobs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/jobs.go b/builder/jobs.go index 3d510974..a23d0753 100644 --- a/builder/jobs.go +++ b/builder/jobs.go @@ -134,7 +134,7 @@ func runJobs(job *compileJob, sema chan struct{}) error { numRunningJobs-- <-sema if jobRunnerDebug { - fmt.Println("## finished:", job.description, "(time "+job.duration.String()+")") + fmt.Println("## finished:", completed.description, "(time "+completed.duration.String()+")") } if completed.err != nil { // Wait for any current jobs to finish.