Use ExecutionPolicy ByPass to execute probe-win.ps1 script during the build (dotnet...
authorJan Kotas <jkotas@microsoft.com>
Sun, 18 Dec 2016 07:44:29 +0000 (23:44 -0800)
committerGitHub <noreply@github.com>
Sun, 18 Dec 2016 07:44:29 +0000 (23:44 -0800)
Port of https://github.com/dotnet/corert/issues/2377

Commit migrated from https://github.com/dotnet/coreclr/commit/4497b25d1107846e0ac8d09fa13e40173528fe9e

src/coreclr/build-test.cmd
src/coreclr/build.cmd
src/coreclr/src/pal/tools/gen-buildsys-win.bat

index 272e133..215fb53 100644 (file)
@@ -98,7 +98,7 @@ if not exist "%__LogsDir%"                      md "%__LogsDir%"
 echo %__MsgPrefix%Checking prerequisites
 
 :: Eval the output from probe-win1.ps1
-for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
+for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
 
 REM =========================================================================================
 REM ===
index 16f1e28..f8c49e3 100644 (file)
@@ -189,7 +189,7 @@ echo %__MsgPrefix%Commencing CoreCLR Repo build
 
 echo %__MsgPrefix%Checking prerequisites
 :: Eval the output from probe-win1.ps1
-for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
+for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
 
 REM =========================================================================================
 REM ===
index ab57fb4..f7f81fc 100644 (file)
@@ -36,7 +36,7 @@ goto loop
 if defined CMakePath goto DoGen
 
 :: Eval the output from probe-win1.ps1
-for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& "%basePath%\probe-win.ps1""') do %%a
+for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& "%basePath%\probe-win.ps1""') do %%a
 
 :DoGen
 "%CMakePath%" "-DCMAKE_USER_MAKE_RULES_OVERRIDE=%basePath%\windows-compiler-override.txt" "-DCMAKE_INSTALL_PREFIX:PATH=$ENV{__CMakeBinDir}" "-DCLR_CMAKE_HOST_ARCH=%__Arch%" %__ExtraCmakeParams% -G "%__CmakeGenerator%" %__SourceDir%