From e958fa446239b41994f9f149ef1bd49ba277423f Mon Sep 17 00:00:00 2001 From: hezhengyi Date: Tue, 3 Dec 2024 19:26:27 +0800 Subject: [PATCH] Revert pr 385 Signed-off-by: hezhengyi --- packages/flutter_tools/lib/src/flutter_cache.dart | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/packages/flutter_tools/lib/src/flutter_cache.dart b/packages/flutter_tools/lib/src/flutter_cache.dart index e71d805901..7822ffbe9b 100644 --- a/packages/flutter_tools/lib/src/flutter_cache.dart +++ b/packages/flutter_tools/lib/src/flutter_cache.dart @@ -1021,31 +1021,25 @@ const List> _androidBinaryDirs = >[ const List> _osxBinaryDirsForOhos = >[ ['ohos-arm64-profile/darwin-x64', 'ohos-arm64-profile/darwin-x64.zip'], ['ohos-arm64-release/darwin-x64', 'ohos-arm64-release/darwin-x64.zip'], - ['ohos-x64-profile/darwin-x64', 'ohos-x64-profile/darwin-x64.zip'], - ['ohos-x64-release/darwin-x64', 'ohos-x64-release/darwin-x64.zip'], ]; const List> _linuxBinaryDirsForOhos = >[ ['ohos-arm64-profile/linux-x64', 'ohos-arm64-profile/linux-x64.zip'], ['ohos-arm64-release/linux-x64', 'ohos-arm64-release/linux-x64.zip'], - ['ohos-x64-profile/linux-x64', 'ohos-x64-profile/linux-x64.zip'], - ['ohos-x64-release/linux-x64', 'ohos-x64-release/linux-x64.zip'], ]; const List> _windowsBinaryDirsForOhos = >[ ['ohos-arm64-profile/windows-x64', 'ohos-arm64-profile/windows-x64.zip'], ['ohos-arm64-release/windows-x64', 'ohos-arm64-release/windows-x64.zip'], - ['ohos-x64-profile/windows-x64', 'ohos-x64-profile/windows-x64.zip'], - ['ohos-x64-release/windows-x64', 'ohos-x64-release/windows-x64.zip'], ]; const List> _ohosBinaryDirs = >[ ['ohos-arm64', 'ohos-arm64/artifacts.zip'], ['ohos-arm64-profile', 'ohos-arm64-profile/artifacts.zip'], ['ohos-arm64-release', 'ohos-arm64-release/artifacts.zip'], - ['ohos-x64', 'ohos-x64/artifacts.zip'], - ['ohos-x64-profile', 'ohos-x64-profile/artifacts.zip'], - ['ohos-x64-release', 'ohos-x64-release/artifacts.zip'], + // ['ohos-x64', 'ohos-x64/artifacts.zip'], + // ['ohos-x64-profile', 'ohos-x64-profile/artifacts.zip'], + // ['ohos-x64-release', 'ohos-x64-release/artifacts.zip'], ]; const List> _dartSdks = > [ -- Gitee