File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 637
637
(let [cache-path (cache-base-path opts)]
638
638
(when-not (.exists (:output-file cacheable))
639
639
(-compile (jar-file-to-disk jar-file cache-path opts)
640
- (assoc opts :output-dir cache-path)))
640
+ (assoc opts :output-dir ( util/path cache-path) )))
641
641
(doseq [[k ^File f] cacheable]
642
642
(when (.exists f)
643
643
(let [target (io/file (util/output-directory opts)
646
646
(subs 1 )))]
647
647
(when (and (or ana/*verbose* (:verbose opts)) (= :out-file k))
648
648
(util/debug-prn (str " Copying cached " f " to " target)))
649
+ (util/mkdirs target)
649
650
(spit target (slurp f))
650
651
(.setLastModified target (util/last-modified jar-file)))))))
651
652
; ; have to call compile-file as it includes more IJavaScript
You can’t perform that action at this time.
0 commit comments