Skip to content

Commit cb26ec9

Browse files
committed
#"\." -> ".", fixes Windows regression
1 parent c7aca4b commit cb26ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/cljs/closure.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@
11991199

12001200
(defn lib-rel-path [{:keys [lib-path url provides] :as ijs}]
12011201
(if (nil? lib-path)
1202-
(str (string/replace (first provides) #"\." File/separator) ".js")
1202+
(str (string/replace (first provides) "." File/separator) ".js")
12031203
(if (.endsWith lib-path ".js")
12041204
(util/get-name url)
12051205
(let [path (util/path url)]

0 commit comments

Comments
 (0)