just
just copied to clipboard
Command line flag to exit without error if recipe not found
In some cases it's helpful to run just so that it silently exists with code 0 if requested recipe is not found. Possible usecase: running same recipe in multiple directories (e.g. with GNU parallel) when in some of them the recipe is not defined, in which case we just want to skip the dir.
It is currently possible to do with NPM scripts, for example npm run --ws --if-present <script> will run script in every workspace where script is defined.
This seems perfectly reasonable to me! Marking as good first issue in case anyone wants to take a crack at it.
i want to try