|
|
|
|
|
by KajMagnus
1891 days ago
|
|
How do you pass arguments to your Make targets? Let's say you'd like to set `DB_USER` to "my_name", then, do you: make psql user=my_name # ?
To me, having to type `user=` is very annoying, I want to do just `make psql my_name`.Agreed that Make is nice :- ) My Makefile is not as nice as Make though o.O > I'm not excited about writing a bash script Bash scripts almost could be illegal :- ) I'm thinking about writing scripts in Deno in the future, instead |
|
I also like Python for this but it's an absolute PITA to distribute scripts that support lots of different versions of python or need any dependencies not in your distro's repos.