Looks like another make. What are the differences though…
It’s pretty much just make, but I find it easier to work with
I see, I see.
Here’s their FAQ answer for that: https://just.systems/man/en/what-are-the-idiosyncrasies-of-make-that-just-avoids.html
I imagine, there’s various smaller differences in how the recipes are defined, but yeah, this is the big one.
I find that Just feels a lot like just a collection of script files, with built-in error handling for argument parsing and during execution. And it also offers easier discovery of available tasks and how to use them.
Yes! It reminds me a bit of python’s click library but for bash
I’m just gonna put this little bad boy into my stash of interesting libraries… Here we go. 😖
⭐️
aight, why not, might as well try it out :D
I’ve often been able to
alias drun='docker compose run --rm --build'
and simplify down to:drun test
Should be able to encode all those wayward args into
docker-compose.yml
orDockerfile
and only use vanilla docker commands – that’s the whole point of containerizationThis looks awesome to use with Qemu, thanks.
Spreading the good word 🙌
Neat.