Casey Rodarmor
Casey Rodarmor
Okay, sounds reasonable to me. Feel free to open a PR! It would also be worth thinking about how to communicate this change to the various explorers, since to get...
Merged! I added a test, and changed the name of the flag to `--disable-cross-origin-isolation`. Thanks for the PR!
To make the bash version nicer, you can also do: ```just scp folder target: !#/usr/bin/env bash set -euxo pipefail if [ "{{ folder }}" == "plugins" ]; then scp -r...
I can see why this is desirable, but it's tough at the implementation level. Justfiles are statically analyzed before anything runs, including any expression evaluation. I would like to support...
I tried using a symlinked import source file, and I was able to get it to work: ``` : tree 8192 B symlink-justfile 4096 B ├─ bar.just 4096 B ├─...
Ahh gotcha, I see the issue. This could be fixed by interpreting imports relative to the canonicalized path to the current justfile, since canonicalization resolves symlinks. However, I worry that...
I would almost be inclined to add a different attribute, maybe `[wait]` or `[pause]` which is like `[confirm]`, but only requires you to hit enter, and if you don't want...
Can you copy and paste the before and after of the formatted justfile?
Thanks! This is definitely a bug.
Looks awesome! Nice test too, 0x58 (decimal 88) indicates a CBOR byte string with a byte length, and 32 is the length. And great that `serde_bytes` can still deserialize the...