From 0d200b432896825b0789aa0784ff3ba63068e43e Mon Sep 17 00:00:00 2001 From: Mark Dixon Date: Wed, 19 Dec 2018 16:09:30 +0000 Subject: [PATCH] fix starts.cmd when there is a space in user name (#5963) --- startvs.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startvs.cmd b/startvs.cmd index 05cd3ebfda..79fde11abd 100644 --- a/startvs.cmd +++ b/startvs.cmd @@ -17,7 +17,7 @@ SET PATH=%DOTNET_ROOT%;%PATH% SET sln=%1 -IF NOT EXIST %DOTNET_ROOT%\dotnet.exe ( +IF NOT EXIST "%DOTNET_ROOT%\dotnet.exe" ( echo .NET Core has not yet been installed. Run `build.cmd -restore` to install tools exit /b 1 )