[Helix] Force overwrite when installing app runtime (#20803)

This commit is contained in:
Hao Kung 2020-04-13 22:24:02 -07:00 committed by GitHub
parent 70daed535a
commit 698ab1518d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ namespace RunTests
entry.Name.EndsWith(".json", StringComparison.OrdinalIgnoreCase) ||
entry.Name.EndsWith(".dll", StringComparison.OrdinalIgnoreCase))
{
entry.ExtractToFile(Path.Combine(appRuntimePath, entry.Name));
entry.ExtractToFile(Path.Combine(appRuntimePath, entry.Name), overwrite: true);
}
}
}