Im working on compiling jars from a local repository in leiningen. This works in my project.clj:
:repositories {"local" ~(str (.toURI (java.io.File. "local_mvn_repo")))} but this fails:
:repositories [["local" (str (.toURI (java.io.File. "local_mvn_repo")))]] $ lein deps java.lang.UnsupportedOperationException: nth not supported on this type: Symbol Even though the latter looks in compliance with the official example. My question is this:
What does the ~ do above, which do I need it, and why can't i use the vector form?