You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two issues with the regression step from the previous commit (both showed
up only on the actual Windows runner, not in local validation):
1. MCPP_SELF was set in an earlier bash step via `pwd` (git-bash) so the
value is MSYS-style (e.g. /d/a/mcpp/...). Bash steps tolerate it but
pwsh's `&` operator can't exec it ("not recognized as a name of a
cmdlet, function, script file, or executable program"). Convert via
cygpath -w before use.
2. `$Args` is a PowerShell automatic variable inside function scope; a
`param([string]$Args)` does not bind cleanly. Renamed to $McppArgs
to avoid the collision (also updated call sites).
0 commit comments