Add virtual dir ending slash when finalizing build (dotnet/core-setup#2881)
authorDavis Goodin <dagood@users.noreply.github.com>
Fri, 21 Jul 2017 13:57:00 +0000 (08:57 -0500)
committerGitHub <noreply@github.com>
Fri, 21 Jul 2017 13:57:00 +0000 (08:57 -0500)
(cherry picked from commit dotnet/core-setup@aea7b1cab8912f78a07408d9e95aafb9bea1e150)

Commit migrated from https://github.com/dotnet/core-setup/commit/4f5b7df840b37e08018187f604b5f94ad63ad071

tools-local/tasks/FinalizeBuild.cs

index 9e4cd05..d21e712 100644 (file)
@@ -95,7 +95,7 @@ namespace Microsoft.DotNet.Build.Tasks
 
                 try
                 {
-                    CopyBlobs($"Runtime/{ProductVersion}", $"Runtime/{Channel}/");
+                    CopyBlobs($"Runtime/{ProductVersion}/", $"Runtime/{Channel}/");
 
                     // Generate the latest version text file
                     string sfxVersion = GetSharedFrameworkVersionFileContent();