From b046d20d3daa0bcaee53a41e98cfa465cd60c614 Mon Sep 17 00:00:00 2001 From: godofredoc Date: Thu, 3 Mar 2022 20:29:32 -0800 Subject: [PATCH] Fix archive name in linux_host_engine. (flutter/engine#31808) The archive name for linux embedder was changed to end with .zip. Bug: https://github.com/flutter/flutter/issues/81855 --- engine/src/flutter/ci/builders/linux_host_engine.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/ci/builders/linux_host_engine.json b/engine/src/flutter/ci/builders/linux_host_engine.json index 5c09d69034..0344552421 100644 --- a/engine/src/flutter/ci/builders/linux_host_engine.json +++ b/engine/src/flutter/ci/builders/linux_host_engine.json @@ -30,7 +30,7 @@ "base_path": "out/host_debug/zip_archives/", "include_paths": [ "out/host_debug/zip_archives/linux-x64/artifacts.zip", - "out/host_debug/zip_archives/linux-x64/linux-x64-embedder", + "out/host_debug/zip_archives/linux-x64/linux-x64-embedder.zip", "out/host_debug/zip_archives/linux-x64/font-subset.zip", "out/host_debug/zip_archives/flutter_patched_sdk.zip", "out/host_debug/zip_archives/dart-sdk-linux-x64.zip",