deps-new

fenton 2021-06-09T18:28:33.007Z

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

seancorfield 2021-06-09T19:01:04.007700Z

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

seancorfield 2021-06-09T19:02:54.008400Z

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

seancorfield 2021-06-09T19:03:02.008700Z

@fenton?

fenton 2021-06-09T19:15:59.009400Z

@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

👍🏻 1