Skip to content

Commit 1d98bdb

Browse files
mfikesdnolen
authored andcommitted
CLJS-2605: Shared AOT Cache: Incorrect extension for cljc files
1 parent 5f08aaf commit 1d98bdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/clojure/cljs/closure.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@
595595
{:source (str "." ext)
596596
:output-file ".js"
597597
:source-map ".js.map"
598-
:analysis-cache-edn ".cljs.cache.edn"
599-
:analysis-cache-json ".cljs.cache.json"}))))
598+
:analysis-cache-edn (str "." ext ".cache.edn")
599+
:analysis-cache-json (str "." ext ".cache.json")}))))
600600

601601
(defn ^String path-from-jarfile
602602
"Given the URL of a file within a jar, return the path of the file

0 commit comments

Comments
 (0)