From 28457494a7385663c3d025e30d7482a144f90922 Mon Sep 17 00:00:00 2001 From: Himanshu Soni Date: Tue, 28 Apr 2020 23:58:23 +0530 Subject: [PATCH] fix build.ps1 script execution error on cmd due to whitespace (#35554) --- build.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.cmd b/build.cmd index 615bef6..76f4d84 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% -- 2.7.4