From 698ab1518d419c8cef775f8ad9191e0cf681321f Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 13 Apr 2020 22:24:02 -0700 Subject: [PATCH] [Helix] Force overwrite when installing app runtime (#20803) --- eng/helix/content/RunTests/TestRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/helix/content/RunTests/TestRunner.cs b/eng/helix/content/RunTests/TestRunner.cs index 46da55bb78..92f6bf065a 100644 --- a/eng/helix/content/RunTests/TestRunner.cs +++ b/eng/helix/content/RunTests/TestRunner.cs @@ -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); } } }