Slashes are used here even on Windows it seems.

This commit is contained in:
Phil Hagelberg 2013-05-16 17:21:21 -07:00
parent c5767cdaca
commit 1a47846578

View file

@ -52,7 +52,7 @@
;; repo names must not contain path delimiters because they're used by
;; aether for form filenames
(defn- sanitize-repo-name [name]
(last (.split name java.io.File/separator)))
(last (.split name "/")))
(defn repo-for [project name]
(let [settings (merge (get (into {} (:repositories project)) name)