Casey Rodarmor

Results 1064 comments of Casey Rodarmor

I've had a `||` syntax in mind for dependencies that should run if a recipe fails: ``` foo: || bar ``` `bar` would only run if `foo` terminates unsuccessfully. But...

I'm not opposed to making this work, but in order to enable this, we would have to add the `allow-same-origin` attribute to inscription iframes, and I haven't really thought through...

Can't cross compile `just` because of this, unfortunately 😭 Edit: This also breaks not only cross compilation, but also even running `cargo check --target x86_64-pc-windows-msvc` on another platform.

> When I clone `just` and override the `blake3` dependency with `path = ...`, I find that that branch fixes `cargo xwin check --target x86_64-pc-windows-msvc`. Dope, just tested it and...

Thank you for the PR! Just a warning, I'm super backlogged, so I'm not sure when I'll be able to review this. Just letting you know so that you don't...

Thanks for opening this issue! I agree it's super useful to document this in case someone else runs into it. We can at least leave this issue open, and if...

Also check out #2798. I added a `--tempdir` command-line option, which can also be configured with `JUST_TEMPDIR`, which can be used to globally override where shebang and script recipes are...

I think this is closed by #2798. Just needs a executable temporary directory to run shebang recipes. On systems where the default directory is not executable, you'll have to use...

There's an `examples` directory, which has some example `justfile`s. We could do things like include a `rust.just` file, which shows example recipes for a Rust project. I wouldn't be super...

I think that's a great idea. Linking to `justfiles` of existing projects would mean we don't need keep examples up to date, and can cover a bunch of different languages...