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 ?
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👍