Casey Rodarmor
Casey Rodarmor
> Please thumbs-up the original issue instead of commenting, since commenting generates a notification. Thank you!
Good point, I documented this in #2129.
It would actually be pretty easy, just prepend the prelude to the command before executing it. So here: ```just set shell-prelude := 'export FOO=bar;' foo: echo $FOO ``` `foo` would...
I actually think it should be up to the user to include whatever terminating whitespace they want. If `just` automatically prepends some kind of whitespace, either a space or a...
`/dev/stdin` is a great workaround, but it doesn't work on Windows, and it should probably be easier, so I'm going to reopen this. #1933 is currently open to implement this.
I think this would be pretty easy to add with a `[setup]` and `[teardown]` attribute. Modules make this more complex though. If you have a single `justfile`, then `[setup]` and...
@runeimp, continuing the discussion from #531: I think implementing it is probably out of the question, but there's actually a rust implementation of Python3, and that might be easy to...
Gotcha, that all makes sense and sounds reasonable. I suppose that the feature would take the form of a recipe annotation indicating to Just that the recipe should be evaluated...
@runeimp I think the disadvantage of Starlark is that it's pretty similar to Python, but just different enough that it will confuse people. @dionjwa Deno sounds like a good option....
@lucabello That's a really good suggestion! I think with Python packaging being the way it is, this might be the best option. Python packaging and versioning is such a mess...