fix starts.cmd when there is a space in user name (#5963)

This commit is contained in:
Mark Dixon 2018-12-19 16:09:30 +00:00 committed by Nate McMaster
parent 7b77332441
commit 0d200b4328
1 changed files with 1 additions and 1 deletions

View File

@ -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
)