Hi!
I'm trying to create an alias which sets an additional profile before running, but does not overwrite profiles.
i.e. lein test
=> lein with-profile +test eftest
but lein with-profile +custom,-other test
=> lein with-profile +test,+custom,-other eftest
:aliases {"test" ["with-profile" "+test" "eftest"]}
handles the first correctly, but fails at the second one
:aliases {"test" ["do" "eftest"]}
handles the second case, not the first one
Plugins usually use :eval-in-leiningen
, to prevent polluting the classpath of the project.
How can i bump a dependency of a plugin?