We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ffe3d8 commit 00b8deaCopy full SHA for 00b8dea
src/main/clojure/cljs/closure.clj
@@ -699,7 +699,8 @@
699
(copy-from-cache cache-path cacheable jar-file opts))))
700
;; Files that don't require compilation (cljs.loader for example)
701
;; need to be copied from JAR to disk.
702
- (when-not (.exists out-file)
+ (when (or (nil? out-file)
703
+ (not (.exists out-file)))
704
(jar-file-to-disk jar-file (util/output-directory opts) opts))
705
;; have to call compile-file as it includes more IJavaScript
706
;; information than ana/parse-ns for now
0 commit comments