diff options
author | Eduardo Julian | 2021-01-05 07:55:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-01-05 07:55:22 -0400 |
commit | 75102dcfa7c2c0afd32cb5bf5ac012df2db6a7a1 (patch) | |
tree | 643350e00eebc8682c5087a4cd73b5f9406d92fb /lux-lein | |
parent | c03bd9f9787fb9f383c57b4ebb0fa9d49abbfaa1 (diff) |
Added lexically-scoped templates.
Diffstat (limited to 'lux-lein')
-rw-r--r-- | lux-lein/src/leiningen/lux/utils.clj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lux-lein/src/leiningen/lux/utils.clj b/lux-lein/src/leiningen/lux/utils.clj index 23466e92f..e2ec2c1ca 100644 --- a/lux-lein/src/leiningen/lux/utils.clj +++ b/lux-lein/src/leiningen/lux/utils.clj @@ -120,8 +120,12 @@ (list* compiler-path) (interpose java.io.File/pathSeparator) (reduce str "") + sanitize-path) + module-path (->> program-dependencies + (interpose java.io.File/pathSeparator) + (reduce str "") sanitize-path)] - (str (java-command project) " -cp " class-path + (str (java-command project) " -cp " class-path " --module-path " module-path " " (lux-command project <mode> program-dependencies source-paths)))) compile-path (str "release " module) |