Willie Möller
Willie Möller
Thank you for checking! Your feedback definitely indicates that I'm missing something. Let me give it another go.
I updated the code with more checks to prevent unnecessary calls to cygpath. > The unit tests helped in identifying this issue, but I got the clearest view of the...
> I'm mostly worried that you're changing a lot of existing direnv-on-cygwin semantics in ways that aren't sufficiently conservative. For example, you've got new logic around symlinks that seem they...
> I'm not saying that it's not a good idea to do more, ever: I'm saying that this PR is currently hard for me to review and validate without re-reading...
Closed because the PR is too big. Another attempt could be made by using some of the ideas in this PR as inspiration, and incrementally introducing capability.
I see the webview project has this file: https://github.com/webview/webview/blob/93be13a101e548c13d47ae36a6ea00300b2ecfc0/webview_mingw_support.h ```c #ifndef WEBVIEW_MINGW_SUPPORT_H #define WEBVIEW_MINGW_SUPPORT_H #ifdef _WIN32 // Some MinGW distributions do not have the EventToken.h header (used by WebView2). //...
Perhaps it is related to this issue, specifically in the way `wslg` remounts certain folders: https://github.com/microsoft/WSL/issues/12989
I'm also interested in "Allow submodules to load .env files".
@casey The `[script]` attribute does not work well with `nix-shell`, producing the following error: > Recipe `exec` has both shebang line and `[script]` attribute Without the `[script]` attribute it works...
How would the `[script]` attribute be able to represent this case? ```justfile # https://docs.pkgx.sh/pkgx/scripting example: #!/usr/bin/env -S pkgx [email protected] import sys print(sys.version) ``` Looks like this works nicely: ```justfile set...