I am trying to use Clojure autodoc in my project. My project.clj looks like this:
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]]
:plugins [[lein-autodoc "0.9.0"]])
When I do lein autodoc
I get this error
clojure.lang.Compiler$CompilerException: java.lang.IllegalAccessError: sh does not exist, compiling:(leiningen/autodoc.clj:1:1)
I do have the binary sh
$ which sh
/bin/sh
How do I fix this?