Andrew Bradley
Andrew Bradley
This ticket is requesting the addition of MediaPackage v2 to moto. MediaPackage v2 is distinct from v1, the APIs are different. v2 has the concept of "groups," where every channel...
Effectively reverts #1259 At the time, nobody with the technical ability to verify if it would work had the MS Store copy, so we enabled it. Since then, someone was...
On Windows, explicitly set $PATH of spawned child processes so that executables resolve in $PATH order, and C:\Windows\System32 doesn't override it. Fixes #2947
This is a doozy, but I've done my best to explain it concisely. # Bug `just` on Windows, by virtue of `std::process::Command`, does not respect `$Path` they way we want...
I had to go searching through issues and PRs to realize these exist. Not sure if this is the best presentation, I copy-pasted the `source_*()` blurb.
When accessing tab completions for a justfile in PowerShell: This is using `MenuComplete` which shows an interactive menu of completions. Notice that my recipes are at the end of the...
**tl;dr ability to import env vars set by bootstrappers like `mise`, `uv`, `.venv/Scripts/activate`** ## Context For python virtual environments, when we use `. ./.venv/Scripts/activate`, `mise`, and/or `uv`, these tools bootstrap...
Is it intuitive to support OS-specific attributes on *all* top-level declarations in a justfile, not just recipes? The OS is hardcoded into the executable, so the logic is straightforward: E.g...
Not sure if this is intended or not. I was trying to `if path_exists(foo) { a } else { b }` or `path_exists(foo) && a || b` It wasn't working,...
This follows the same convention as for the documentation of `is_dependency()`. This avoids confusion where a reader might assume that `just` supports boolean values and is returning true or false...