How to run a prep-task in lein?
I want to run the task lein run -m user and I tried:
:prep-tasks ["run -m user"]
and
:prep-tasks ["run" "-m user"]
but they give run -m user is not a task and -m user is not a task respectivelyfrom the sample it looks like you might want [["run" "-m" "user"]]: https://github.com/technomancy/leiningen/blob/master/sample.project.clj#L263-L266