Casey Rodarmor

Results 1064 comments of Casey Rodarmor

I think this would be great. I can imagine a few options that might be useful: 1. Use the working directory of the root justfile 2. Use the working directory...

#2283 added support for the form that takes a string: ```just set working-dir := "some/other/directory" ``` So we're still lacking the ability to use the working directory of a parent...

This is all horrifically complicated by the fact that variables, recipes, and settings can all have the same name.

I think that some combination of environment variables, and a setting, might be a good approach here. Automatically exporting and inheriting arguments would break backwards compatibility, so a setting would...

I labeled this as a good first issue, in case anyone wants to take a crack at it.

I like the idea of explicitly specifying what you want to export. There's already a `set export`, so another name is probably better. And there are things other than args,...

This seems perfectly reasonable to me! Marking as good first issue in case anyone wants to take a crack at it.

Actually, reopening until it's actually implemented.

Unfortunately this currently isn't possible. `args` will be passed to `run` as a single space-separated argument. The best way to support this would by some kind of splat syntax: ```just...