fixed regex helper

This commit is contained in:
Gary Deer 2016-03-16 11:21:34 -05:00
parent 5e90a0d58d
commit 8f89df548f

View file

@ -17,7 +17,7 @@
(delete-file f silently)))
(defn find-clojure-file-paths [source-dir]
(marginalia.core/find-processable-file-paths source-dir #".clj$"))
(marginalia.core/find-processable-file-paths source-dir #(re-find #"\.clj$" %)))
(defn files-in [dir]
(seq (.listFiles (file dir))))