From c9affdba9dcd2ac6569092509a44c9c84eba46f5 Mon Sep 17 00:00:00 2001 From: godofredoc Date: Wed, 25 Jan 2023 21:25:02 -0800 Subject: [PATCH] Move windows-x64-flutter.zip to windows-x64-debug location. (#119177) The dependency is currently uploaded to two different locations. This change is required to remove the duplicate uploads and their corresponding tech debt. --- packages/flutter_tools/lib/src/flutter_cache.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/flutter_cache.dart b/packages/flutter_tools/lib/src/flutter_cache.dart index 3b378d2f0ff9..499c770e4f78 100644 --- a/packages/flutter_tools/lib/src/flutter_cache.dart +++ b/packages/flutter_tools/lib/src/flutter_cache.dart @@ -845,7 +845,7 @@ class IosUsbArtifacts extends CachedArtifact { // remove from existing host folder. // https://github.com/flutter/flutter/issues/38935 const List> _windowsDesktopBinaryDirs = >[ - ['windows-x64', 'windows-x64/windows-x64-flutter.zip'], + ['windows-x64', 'windows-x64-debug/windows-x64-flutter.zip'], ['windows-x64', 'windows-x64/flutter-cpp-client-wrapper.zip'], ['windows-x64-profile', 'windows-x64-profile/windows-x64-flutter.zip'], ['windows-x64-release', 'windows-x64-release/windows-x64-flutter.zip'],