Closed eigenhombre closed 11 years ago
... this is what's causing lein uberjar to fail.
lein uberjar
(def facts (->> filenames ...)) causes filenames to be evaluated and opened.
(def facts (->> filenames ...))
If you make the def a function instead, and call the function instead of dereferencing the var, we'll be all set.
def
about to PR a fix...
lein überjar works... fixing midje now...
... this is what's causing
lein uberjar
to fail.(def facts (->> filenames ...))
causes filenames to be evaluated and opened.If you make the
def
a function instead, and call the function instead of dereferencing the var, we'll be all set.