Skip to content

Commit cae4792

Browse files
author
dnolen
committed
return false for gitlibs-src? for now
1 parent 9f8ad16 commit cae4792

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/clojure/cljs/closure.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
(defn- gitlibs-src?
6565
"Returns true if the file comes from the gitlibs cache."
6666
[file]
67-
(string/starts-with? (util/path file) (gitlibs-cache-dir)))
67+
#_(string/starts-with? (util/path file) (gitlibs-cache-dir))
68+
;; NOTE: does not work on first build see CLJS-2765
69+
false)
6870

6971
(def name-chars (map char (concat (range 48 57) (range 65 90) (range 97 122))))
7072

0 commit comments

Comments
 (0)