aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/src/lux.clj
diff options
context:
space:
mode:
Diffstat (limited to 'lux-bootstrapper/src/lux.clj')
-rw-r--r--lux-bootstrapper/src/lux.clj6
1 files changed, 4 insertions, 2 deletions
diff --git a/lux-bootstrapper/src/lux.clj b/lux-bootstrapper/src/lux.clj
index 783a25a64..1d337df04 100644
--- a/lux-bootstrapper/src/lux.clj
+++ b/lux-bootstrapper/src/lux.clj
@@ -21,8 +21,10 @@
(defn -main [& args]
(|case (&/->list args)
- (&/$Item "release" (&/$Item program-module (&/$Item dependencies (&/$Item source-dirs (&/$Item target-dir (&/$End))))))
- (&compiler/compile-program &/$Build program-module
+ (&/$Item "release" (&/$Item program-module (&/$Item program-definition (&/$Item dependencies (&/$Item source-dirs (&/$Item target-dir (&/$End)))))))
+ (&compiler/compile-program &/$Build
+ program-module
+ program-definition
(separate-paths dependencies)
(separate-paths source-dirs)
target-dir)