Casey Rodarmor

Results 1064 comments of Casey Rodarmor

Third request: [A proposal for a new recipe type](https://github.com/casey/just/issues/1413), which solves a number of issues and inconsistencies, and could be made the default recipe type in a future edition.

Fourth request! Just now has modules and imports. Imports load a source file and include all items in the source file in the current justfile. If a `justfile` contains: ```just...

I want to give a final call for testing and feedback for the modules feature. All bugs I know of have been fixed, and I added a `source_file()` and `source_directory()`...

@gl-yziquel converted this to an issue, since I tend to lose track of discussions.

Yah, I think this was implemented. Thanks for the ping!

This seems reasonable. I think the only question is how to do it in a cross-platform way without relying on any particular shell.

Can you provide steps to reproduce the issue? I was able to create a justfile, symlink it to `/justfile`, and then print `justfile_directory()` which was equal to `/`. Is the...

Gotcha, that makes sense. Whoops, yeah, I meant `dir := parent_directory(canonicalize(justfile()))`. Hmm, this is a tricky one. Could you make your justfile like this: ``` import '/etc/justfile'` ``` Instead of...

I think this is probably reasonable. I don't really like defaulting to `""`, it just seems inelegant, but I don't see a better alternative.

It's in a few places, but you can start with `Parser::parse_conditional`, and make `Expression::Conditional::otherwise` an `Option`.