Fork me on GitHub
#boot
<
2018-10-10
>
martinklepsch12:10:59

@fabrao there's a page in the wiki related to emacs and putting autosave files in a global/user directory

alexyakushev21:10:15

I still can't understand how to use sift correctly.

alexyakushev21:10:58

I have a simple task: build a JAR consisting of compiled Java classes and raw Clojure sources.

alexyakushev21:10:07

My intuition suggests this:

(comp (javac)
      (sift :add-resource #{"src"} :include #{#"\.clj$"})
      (pom :version version)
      (jar))

alexyakushev21:10:53

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?

alexyakushev21:10:47

Also, how can I debug which sections are there on the fileset? show :fileset true doesn't tell that.