Casey Rodarmor
Casey Rodarmor
Yup, thanks!
I think the reason this doesn't work is that when just extracts the body of a shebang recipe into a file to execute, `just` places the shabang line first, and...
Fixed in #2276! All shebang lines are now kept together in the top of the resulting script.
Thanks for the well-written feature request! I think the downside you mentioned is potentially an annoying one. I don't think it would come up often, but it would be pretty...
> The example demonstrates the use-case. I'm curious about the specific use case, as in, what are you trying to do in the just recipe, to see if there's another...
What about adding some way to print the body of a recipe to standard out, which could then be linted with the linter of the user's choice? We could add...
I'd probably just dump the text first, and worry about evaluating variables in a later PR. You're right that users probably expect `--dump recipe` to abide by `--dump-format`. Adding a...
Could you do something like this instead: ```just lint-foo: base-lints: lint-foo ``` ```just import 'foo.just' lint: base-lints ``` You can then call `lint` on the command line, which will then...
I see the use case, but I think that allowing duplicate recipes but retaining both and running both when the recipe is run probably breaks too many assumptions. I think...