Fork me on GitHub
#deps-new
<
2021-06-09
>
fenton18:06:33

I've got the specified deps.edn in both /.clojure/ and /.config/clojure.

{:aliases {:new {:extra-deps {com.github.seancorfield/clj-new
                              {:mvn/version "1.1.309"}}

                 :exec-fn clj-new/create
                 :exec-args {:template "app"}}}}
However when I run the follow it errors with:
$ clojure -X:new :name myname/myapp
No function found on command line or in :exec-fn

seancorfield19:06:04

What does clojure -version say? Or clojure -Sdescribe if that doesn’t work.

seancorfield19:06:54

Also, is that the whole of your deps.edn file or just a fragment?

fenton19:06:59

@seancorfield just on the road right now so I'll get back to you on the versions and whatnot. That was the entire deps file

2