Skip to content

Commit

Permalink
Updating the scripts to by pass execution policy not requiring devs t…
Browse files Browse the repository at this point in the history
…o global bypass. (#469)

Will edit the docs as well.
  • Loading branch information
AbhitejJohn committed Feb 12, 2017
1 parent 5dd2a9e commit 8df5394
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Expand Up @@ -2,5 +2,5 @@

REM Copyright (c) Microsoft. All rights reserved.

powershell -NoProfile -NoLogo -Command "%~dp0scripts\build.ps1 %*; exit $LastExitCode;"
powershell -ExecutionPolicy Bypass -NoProfile -NoLogo -Command "%~dp0scripts\build.ps1 %*; exit $LastExitCode;"
if %errorlevel% neq 0 exit /b %errorlevel%
2 changes: 1 addition & 1 deletion test.cmd
Expand Up @@ -2,5 +2,5 @@

REM Copyright (c) Microsoft. All rights reserved.

powershell -NoProfile -NoLogo -Command "%~dp0scripts\test.ps1 %*; exit $LastExitCode;"
powershell -ExecutionPolicy Bypass -NoProfile -NoLogo -Command "%~dp0scripts\test.ps1 %*; exit $LastExitCode;"
if %errorlevel% neq 0 exit /b %errorlevel%

0 comments on commit 8df5394

Please sign in to comment.