We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5c86f9 commit b0d605fCopy full SHA for b0d605f
build/archives/BUILD.gn
@@ -107,6 +107,11 @@ if (build_engine_artifacts && flutter_prebuilt_dart_sdk) {
107
zip_bundle("dart_sdk_archive") {
108
deps = []
109
output = "dart-sdk-$full_target_platform_name.zip"
110
+ if (is_mac) {
111
+ # Mac artifacts sometimes use mac and sometimes darwin. Standardizing the
112
+ # names will require changes in the list of artifacts the tool is downloading.
113
+ output = "dart-sdk-darwin-$target_cpu.zip"
114
+ }
115
files = [
116
{
117
source = prebuilt_dart_sdk
0 commit comments