Skip to content

Commit

Permalink
return false for gitlibs-src? for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dnolen committed Jun 1, 2018
1 parent 9f8ad16 commit cae4792
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/clojure/cljs/closure.clj
Expand Up @@ -64,7 +64,9 @@
(defn- gitlibs-src?
"Returns true if the file comes from the gitlibs cache."
[file]
(string/starts-with? (util/path file) (gitlibs-cache-dir)))
#_(string/starts-with? (util/path file) (gitlibs-cache-dir))
;; NOTE: does not work on first build see CLJS-2765
false)

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

Expand Down

0 comments on commit cae4792

Please sign in to comment.