Skip to content

Commit bb131ac

Browse files
authored
Update Program.cs
1 parent 3063a1c commit bb131ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/helix/content/RunTests/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static async Task Main(string[] args)
100100
Directory.CreateDirectory(aspnetRuntimePath);
101101
foreach (var file in Directory.EnumerateFiles("Microsoft.AspNetCore.App", "*.*", SearchOption.AllDirectories))
102102
{
103-
File.Copy(file, aspnetRuntimePath + file, overwrite: true);
103+
File.Copy(file, Path.Combine(aspnetRuntimePath, file), overwrite: true);
104104
}
105105

106106
Console.WriteLine();

0 commit comments

Comments
 (0)