diff options
author | Mikhail Pilin <ww898@users.noreply.github.com> | 2016-04-22 11:52:07 +0200 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2016-04-22 02:52:07 -0700 |
commit | 4e769b7658f239cff2a0c80b673b91de8d686388 (patch) | |
tree | 8e9bf2035195f6eaf55e87a708e699b4cdf0843e /build.proj | |
parent | 26f12966e33a6eba09d071451b2c60e3ea44047f (diff) | |
download | coreclr-4e769b7658f239cff2a0c80b673b91de8d686388.tar.gz coreclr-4e769b7658f239cff2a0c80b673b91de8d686388.tar.bz2 coreclr-4e769b7658f239cff2a0c80b673b91de8d686388.zip |
Partly fix the build issue when path to git repository has spaces (for example "d:\z z\coreclr"). (#4388)
The same issue in "d:\z z\coreclr\Tools\versioning.targets"(288): $(IntermediateOutputPath) should be "$(IntermediateOutputPath.TrimEnd('\'))" and all other path should be quoted with " in this line.
Diffstat (limited to 'build.proj')
-rw-r--r-- | build.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.proj b/build.proj index d37eaff73e..cc46fdb6bc 100644 --- a/build.proj +++ b/build.proj @@ -17,7 +17,7 @@ </Target> <Target Name="RestoreNETCorePlatforms" AfterTargets="Build"> - <Exec Command="$(DnuRestoreCommand) $(SourceDir).nuget/init/project.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" /> + <Exec Command="$(DnuRestoreCommand) "$(SourceDir).nuget/init/project.json" --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" /> </Target> </Project>
\ No newline at end of file |