leiningen

Maris 2023-01-09T19:33:31.115099Z

I need to rename few files during leiningen release process. ( as part of :release-tasks ) Is there a plugin for that? Do I need to write my own ?

Rupert (Sevva/All Street) 2023-01-10T08:29:43.474349Z

The approach we take: Create an alias e.g. "build" then use shell in command

:aliases {"build"  ["do" ["install"]
                         ["uberjar"]
                         ["shell" "echo" "Command here (e.g. mv) "]
                         ["shell" "echo" "Command here"]]}
then run lein <alias> e.g. lein build

👍 1
Maris 2023-01-10T10:12:44.791599Z

👍