aboutsummaryrefslogtreecommitdiff
path: root/src/lux/compiler/parallel.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/lux/compiler/parallel.clj')
-rw-r--r--src/lux/compiler/parallel.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lux/compiler/parallel.clj b/src/lux/compiler/parallel.clj
index 3506eb82e..8f6fee99d 100644
--- a/src/lux/compiler/parallel.clj
+++ b/src/lux/compiler/parallel.clj
@@ -39,9 +39,9 @@
(|case (&/run-state (compile-module* module-name)
compiler)
(&/$Right post-compiler _)
- (deliver task post-compiler)
+ (deliver task (&/$Right post-compiler))
(&/$Left ?error)
- (println ?error)))]
+ (deliver task (&/$Left ?error))))]
(&/|log! out-str))))))]]
(return task))))