From f843c2bc6197732e945217b3f7b018d82500af9f Mon Sep 17 00:00:00 2001 From: oleksandr-codefresh Date: Tue, 12 May 2026 08:33:27 +0300 Subject: [PATCH] zip extractor: disable preserving file time to support non-root mode for containers --- .../Features/Packages/PackageExtractionOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Calamari.Common/Features/Packages/PackageExtractionOptions.cs b/source/Calamari.Common/Features/Packages/PackageExtractionOptions.cs index 782848a227..33bb3c1edc 100644 --- a/source/Calamari.Common/Features/Packages/PackageExtractionOptions.cs +++ b/source/Calamari.Common/Features/Packages/PackageExtractionOptions.cs @@ -13,7 +13,7 @@ public PackageExtractionOptions(ILog log) this.log = log; ExtractFullPath = true; Overwrite = true; - PreserveFileTime = true; + PreserveFileTime = false; WriteSymbolicLink = WarnThatSymbolicLinksAreNotSupported; }