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

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dixon <mark@markdixon.tech>2018-12-19 19:09:30 +0300
committerNate McMaster <natemcmaster@users.noreply.github.com>2018-12-19 19:09:30 +0300
commit0d200b432896825b0789aa0784ff3ba63068e43e (patch)
tree2bd7315c1b8e3ada68fe82abcf0eba2760710521 /startvs.cmd
parent7b773324410cb075ea1821bcc50f018f86d8a0f6 (diff)
fix starts.cmd when there is a space in user name (#5963)
Diffstat (limited to 'startvs.cmd')
-rw-r--r--startvs.cmd2
1 files changed, 1 insertions, 1 deletions
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
)