Casey Rodarmor

Results 1064 comments of Casey Rodarmor

They would be like subcommands, since an inline module is the same as a normal module, and normal modules create subcommands. It should be possible to nest modules recursively, although...

Allowing `:` in the recipe name grammar would lead to some issues. For example, should this: ``` foo:bar:baz ``` Be interpreted as recipe `foo` with dependency `bar:baz`, or recipe `foo:bar`...

Yah, similar issues with `.` syntax. `.` is used so common for property access, and we might want that later, i.e. `object.method()`.

My understanding is that `SIGHUP` is sent to all processes in the foreground process group, including child processes, when the terminal closes. So if `just` forwarded `SIGHUP` to child processes,...

Weird, I'm not sure what the issue is here since I don't use `nix`, and it seems to be working locally for me. Leaving this open in case anyone has...

Thanks for reporting this! Do master and the latest released version, 1.34, fail with the same error? That test tries to interactively make sure that bash completions are working, so...

Hmm, interesting. Can you try with an older version of bash? The tests are passing for me on a Debian box with bash 5.1.4.

That sounds pretty reasonable to me! I *think* this is something going on with Alpine, since tests are passing on other Linux distros, so there's probably not much to do...

Nice, thank you for getting `just` up-to-date on Alpine!

This is a really interesting thought. We could have a separate function, or we could give `quote()` an optional second argument, which is an optional input_delimiter. Although, an advantage a...