feat(install): support Windows PowerShell installs - #4
Closed
Mineru98 wants to merge 2 commits into
Closed
Conversation
Mineru98
added a commit
that referenced
this pull request
Jul 21, 2026
Three Windows-only mix test failures surfaced by windows-ci.yml, none of which are production bugs: - Ports (#1 StdioTest, #5 HelperPortTest): the port test helper spawned `elixir` (elixir.bat on Windows), whose batch shim breaks the port stdout pipe ("The pipe is being closed") and adds boot latency. Drive the echo/ shell programs with `erl` directly instead, passing operations as a base64 term (no escaping). Behaviour is identical on Linux (41 tests, 0 failures). - Registry skill paths (#2/#3/#4): the code returns Path.expand'd skill paths (forward slashes, lowercased drive on Windows); tests compared against raw Path.join values. Wrap the expected values in Path.expand, matching the existing source_id assertions. Idempotent on Linux. - Frontmatter CRLF (Ouro-labs#6): the parser already handles CRLF; the failure came from the .exs fixture being checked out CRLF on Windows. Add .gitattributes (eol=lf) so text files are LF on every platform. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Verification