Commit f0a8ee2a authored by Chinmay Garde's avatar Chinmay Garde

Use debug artifacts on mac host and update engine revision. (#3875)

parent 0f53f796
befe39324ed5502807608496fd822fa889c5b931 57edc534d69031b03409e7af37cbc492cb135086
...@@ -37,7 +37,7 @@ enum HostPlatform { ...@@ -37,7 +37,7 @@ enum HostPlatform {
String getNameForHostPlatform(HostPlatform platform) { String getNameForHostPlatform(HostPlatform platform) {
switch (platform) { switch (platform) {
case HostPlatform.darwin_x64: case HostPlatform.darwin_x64:
return "mac_release"; return "mac_debug";
case HostPlatform.linux_x64: case HostPlatform.linux_x64:
return "linux-x64"; return "linux-x64";
} }
...@@ -64,7 +64,7 @@ String getNameForTargetPlatform(TargetPlatform platform) { ...@@ -64,7 +64,7 @@ String getNameForTargetPlatform(TargetPlatform platform) {
case TargetPlatform.ios: case TargetPlatform.ios:
return "ios_release"; return "ios_release";
case TargetPlatform.darwin_x64: case TargetPlatform.darwin_x64:
return "mac_release"; return "mac_debug";
case TargetPlatform.linux_x64: case TargetPlatform.linux_x64:
return "linux-x64"; return "linux-x64";
} }
......
...@@ -207,7 +207,7 @@ class FlutterEngine { ...@@ -207,7 +207,7 @@ class FlutterEngine {
// Return a list of (cache directory path, download URL path) tuples. // Return a list of (cache directory path, download URL path) tuples.
List<List<String>> _getToolsDirs() { List<List<String>> _getToolsDirs() {
if (Platform.isMacOS) if (Platform.isMacOS)
return <List<String>>[<String>['mac_release', 'mac_release/artifacts.zip']]; return <List<String>>[<String>['mac_debug', 'mac_debug/artifacts.zip']];
else if (Platform.isLinux) else if (Platform.isLinux)
return <List<String>>[ return <List<String>>[
<String>['linux-x64', 'linux-x64/artifacts.zip'], <String>['linux-x64', 'linux-x64/artifacts.zip'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment