diff options
author | Eduardo Julian | 2019-03-17 00:15:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-17 00:15:52 -0400 |
commit | e9403bb6364152af447080d41a35891f8d75ff30 (patch) | |
tree | 50605eb36e79482d2604eaa90e93c17d21bbfc1f /luxc/src | |
parent | 0610e1ae29a4db50d1e4e73992793aaa09ae2ad9 (diff) |
Now only timing compiler operations in the Leiningen plugin.
Diffstat (limited to 'luxc/src')
-rw-r--r-- | luxc/src/lux.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luxc/src/lux.clj b/luxc/src/lux.clj index 3dbc819a1..f35373fa8 100644 --- a/luxc/src/lux.clj +++ b/luxc/src/lux.clj @@ -20,7 +20,7 @@ (defn -main [& args] (|case (&/->list args) (&/$Cons "release" (&/$Cons program-module (&/$Cons resources-dirs (&/$Cons source-dirs (&/$Cons target-dir (&/$Nil)))))) - (time (&compiler/compile-program &/$Build program-module (separate-paths resources-dirs) (separate-paths source-dirs) target-dir)) + (&compiler/compile-program &/$Build program-module (separate-paths resources-dirs) (separate-paths source-dirs) target-dir) (&/$Cons "repl" (&/$Cons resources-dirs (&/$Cons source-dirs (&/$Cons target-dir (&/$Nil))))) (&repl/repl (separate-paths resources-dirs) |