我正在尝试在我的项目中使用Clojure autodoc。我的project.clj看起来像这样:
: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"]])
当我lein autodoc
时,我收到此错误
clojure.lang.Compiler$CompilerException: java.lang.IllegalAccessError: sh does not exist, compiling:(leiningen/autodoc.clj:1:1)
我确实有二进制sh
$ which sh
/bin/sh
我该如何解决这个问题?