Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimanshu Soni <hsoni@tavisca.com>2020-04-28 21:28:23 +0300
committerGitHub <noreply@github.com>2020-04-28 21:28:23 +0300
commit28457494a7385663c3d025e30d7482a144f90922 (patch)
tree4f5d930159a5d3cff178b8839da4a6dd458ee014 /build.cmd
parent2b30fdb4f7660ce6e3f3bdf560962c830f908f81 (diff)
fix build.ps1 script execution error on cmd due to whitespace (#35554)
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.cmd b/build.cmd
index 615bef6c65b..76f4d841894 100644
--- a/build.cmd
+++ b/build.cmd
@@ -4,5 +4,5 @@ setlocal
set _args=%*
if "%~1"=="-?" set _args=-help
-powershell -ExecutionPolicy ByPass -NoProfile -Command "%~dp0eng\build.ps1" %_args%
+powershell -ExecutionPolicy ByPass -NoProfile -Command "& '%~dp0eng\build.ps1'" %_args%
exit /b %ERRORLEVEL%