Commit 27a46e3
committed
Fix PowerShell script line endings for GitHub Actions
Change PowerShell scripts from CRLF to LF line endings to fix the build failure on Linux runners in GitHub Actions. The error was:
/usr/bin/env: 'pwsh\r': No such file or directory
This occurred because CRLF line endings caused the shebang line to be interpreted incorrectly on Unix systems.
PowerShell Core (pwsh) works correctly with LF line endings on all platforms including Windows, so this change maintains cross-platform compatibility while fixing the CI build.1 parent 25e322a commit 27a46e3
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
| 22 | + | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments