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 637637 (let [cache-path (cache-base-path opts)]
638638 (when-not (.exists (:output-file cacheable))
639639 (-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) )))
641641 (doseq [[k ^File f] cacheable]
642642 (when (.exists f)
643643 (let [target (io/file (util/output-directory opts)
646646 (subs 1 )))]
647647 (when (and (or ana/*verbose* (:verbose opts)) (= :out-file k))
648648 (util/debug-prn (str " Copying cached " f " to " target)))
649+ (util/mkdirs target)
649650 (spit target (slurp f))
650651 (.setLastModified target (util/last-modified jar-file)))))))
651652 ; ; have to call compile-file as it includes more IJavaScript
You can’t perform that action at this time.
0 commit comments