From 0fade7ff7833f1243115795e2fce0375c3df3a4e Mon Sep 17 00:00:00 2001 From: jem Date: Fri, 14 Feb 2020 19:09:52 +0100 Subject: [PATCH] fix arity exception --- src/cryogen_core/classpath_able_io.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cryogen_core/classpath_able_io.clj b/src/cryogen_core/classpath_able_io.clj index 4cc96f4..1d41063 100644 --- a/src/cryogen_core/classpath_able_io.clj +++ b/src/cryogen_core/classpath_able_io.clj @@ -49,7 +49,7 @@ (cp/path-if-exists))] (cond (some? path-from-fs) - (fs/create-resource resource-path path-from-fs) + (fs/create-resource resource-path path-from-fs :filesystem) (some? path-from-cp) (cp/create-resource resource-path path-from-cp) :else nil)))