diff options
author | Eduardo Julian | 2017-03-21 19:15:12 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-03-21 19:15:12 -0400 |
commit | ad2f9e165d2bdce646507f1aadd133b8f67ae75f (patch) | |
tree | 7d6c0e8c8f91f72665e1c20e6cfc7d163c4ce3bf /lux-lein | |
parent | f215258b4b1a1847c05f0339af8807f8efd20f61 (diff) |
- Can now select between JVM and JS compilation, based on command-line parameters.
Diffstat (limited to 'lux-lein')
-rw-r--r-- | lux-lein/src/leiningen/lux/utils.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-lein/src/leiningen/lux/utils.clj b/lux-lein/src/leiningen/lux/utils.clj index c70ec2289..a786a4d6d 100644 --- a/lux-lein/src/leiningen/lux/utils.clj +++ b/lux-lein/src/leiningen/lux/utils.clj @@ -90,7 +90,7 @@ (str (java-command project) " -cp " class-path " " (lux-command project <mode> source-paths)))) - compile-path (str "release " module) + compile-path (str "release jvm " module) repl-path "repl" ) |