aboutsummaryrefslogtreecommitdiffhomepage
path: root/builder
diff options
context:
space:
mode:
authorDamian Gryski <[email protected]>2023-04-17 10:52:16 -0700
committerRon Evans <[email protected]>2023-04-22 10:01:02 +0200
commit06e34caa5fa527b8795fc6d72365158ad6f44e17 (patch)
tree070f3fc6a2be51b3769392ca8a9485489add8063 /builder
parent4e9f9e27731a07e665007def34680d20ef31b5c8 (diff)
downloadtinygo-06e34caa5fa527b8795fc6d72365158ad6f44e17.tar.gz
tinygo-06e34caa5fa527b8795fc6d72365158ad6f44e17.zip
builder: print the status of the job that just completed
Diffstat (limited to 'builder')
-rw-r--r--builder/jobs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/jobs.go b/builder/jobs.go
index 3d5109749..a23d07534 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.