File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11@ ECHO OFF
2- powershell .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -build %* "
2+ pwsh .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -build %* "
33EXIT /B %ERRORLEVEL%
Original file line number Diff line number Diff line change 11@ ECHO OFF
2- powershell .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -pack %* "
2+ pwsh .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -pack %* "
33EXIT /B %ERRORLEVEL%
Original file line number Diff line number Diff line change 11@ ECHO OFF
2- powershell .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -restore %* "
2+ pwsh .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -restore %* "
33EXIT /B %ERRORLEVEL%
Original file line number Diff line number Diff line change @@ -103,8 +103,8 @@ function Test-Win32Metadata {
103103 $clangSharpPInvokeGeneratorBinaries = (Get-ChildItem - Path " $clangSharpPInvokeGeneratorOutputDir " - File).FullName
104104 Copy-Item - Path $clangSharpPInvokeGeneratorBinaries - Destination " $win32MetadataToolsDir "
105105
106- $generateMetadataSourceCmd = Join-Path - Path $win32MetadataDir - ChildPath " GenerateMetadataSource.cmd "
107- & " $generateMetadataSourceCmd "
106+ $generateMetadataSourcePs1 = Join-Path - Path $win32MetadataDir - ChildPath " scripts\ GenerateMetadataSource.ps1 "
107+ & " $generateMetadataSourcePs1 "
108108
109109 if ($LastExitCode -ne 0 ) {
110110 throw " 'GenerateMetadataSource.cmd' failed"
Original file line number Diff line number Diff line change 11@ ECHO OFF
2- powershell .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 build.ps1" " " -ci %* "
2+ pwsh .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 build.ps1" " " -ci %* "
33EXIT /B %ERRORLEVEL%
Original file line number Diff line number Diff line change 11@ ECHO OFF
2- powershell .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -test %* "
2+ pwsh .exe -NoLogo -NoProfile -ExecutionPolicy ByPass -Command " & " " " %~dp0 scripts\build.ps1" " " -test %* "
33EXIT /B %ERRORLEVEL%
You can’t perform that action at this time.
0 commit comments