Guest User

Untitled

a guest
May 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. diff --git a/src/leiningen/classpath.clj b/src/leiningen/classpath.clj
  2. index 3be7e1f..836740e 100644
  3. --- a/src/leiningen/classpath.clj
  4. +++ b/src/leiningen/classpath.clj
  5. @@ -8,7 +8,9 @@
  6. "Returns a seq of Files for all the jars in the project's library directory."
  7. [project]
  8. (filter #(.endsWith (.getName %) ".jar")
  9. - (file-seq (file (:library-path project)))))
  10. + (concat
  11. + (file-seq (file (:library-path project)))
  12. + (file-seq (file (str (:root project) "/lib/dev"))))))
  13.  
  14. (defn make-path
  15. "Constructs an ant Path object from Files and strings."
Add Comment
Please, Sign In to add comment