Casey Rodarmor

Results 1064 comments of Casey Rodarmor

> Having a call to `uuid()`, and the like in a cached recipe means the recipe will always change and never be cached. So they should be disallowed completely until...

> 1. Do we really need to constrain this to only shebang recipes to prevent double evaluation if this is unstable only? I feel it's better to allow shebang and...

There are some conflicts, but they shouldn't be too bad to resolve. Let me know when this is ready for review!

Converted to a draft just so I can keep track of what's ready to go. Feel free to undraft!

Thanks for following up! Sad to see this closed, but open source is volunteer work, so life takes precedence!

This is actually quite a tricky problem. Let's say there's a new function `foo()` in `just` 1.50.0, so when using it, you put `set minimum-just-version := '1.50.0'`: ```just set minimum-just-version...

> Just a thought, Would it make sense to only allow the minimum version as the very first tokens of a Justfile, but still as optional? This is possible, although...

`{{…}}` interpolations aren't processed in strings. See #11. But the issue is still valid, since you can't do: ```just [confirm("Really do stuff with " + arg + "?")] action arg:...