From 291b594ad9e644b219ab5ee488557c8d2caae75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=98=AD?= <81747598+lan-yonghui@users.noreply.github.com> Date: Wed, 10 Sep 2025 22:23:25 +0800 Subject: [PATCH] fix: Fix file decompression issue (#10333) --- agent/utils/files/file_op.go | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/utils/files/file_op.go b/agent/utils/files/file_op.go index ffa25e97b..c8f1717db 100644 --- a/agent/utils/files/file_op.go +++ b/agent/utils/files/file_op.go @@ -686,6 +686,7 @@ func (f FileOp) decompressWithSDK(srcFile string, dst string, cType CompressType if err != nil { return err } + return nil } handler := func(ctx context.Context, archFile archiver.File) error {