Fork me on GitHub
#leiningen
<
2020-11-25
>
thumbnail09:11:25

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

thumbnail17:11:34

Plugins usually use :eval-in-leiningen, to prevent polluting the classpath of the project. How can i bump a dependency of a plugin?