@fabrao there's a page in the wiki related to emacs and putting autosave files in a global/user directory
I still can't understand how to use sift
correctly.
I have a simple task: build a JAR consisting of compiled Java classes and raw Clojure sources.
My intuition suggests this:
(comp (javac)
(sift :add-resource #{"src"} :include #{#"\.clj$"})
(pom :version version)
(jar))
But it seems like :add-resource
(or any other :add-*
) overwrites the current fileset. Is this an expected behavior and does it have to be?
Also, how can I debug which sections are there on the fileset? show :fileset true
doesn't tell that.