Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f0a8ee2a
Commit
f0a8ee2a
authored
May 12, 2016
by
Chinmay Garde
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use debug artifacts on mac host and update engine revision. (#3875)
parent
0f53f796
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
engine.version
bin/cache/engine.version
+1
-1
build_configuration.dart
packages/flutter_tools/lib/src/build_configuration.dart
+2
-2
cache.dart
packages/flutter_tools/lib/src/cache.dart
+1
-1
No files found.
bin/cache/engine.version
View file @
f0a8ee2a
befe39324ed5502807608496fd822fa889c5b931
57edc534d69031b03409e7af37cbc492cb135086
packages/flutter_tools/lib/src/build_configuration.dart
View file @
f0a8ee2a
...
...
@@ -37,7 +37,7 @@ enum HostPlatform {
String
getNameForHostPlatform
(
HostPlatform
platform
)
{
switch
(
platform
)
{
case
HostPlatform
.
darwin_x64
:
return
"mac_
release
"
;
return
"mac_
debug
"
;
case
HostPlatform
.
linux_x64
:
return
"linux-x64"
;
}
...
...
@@ -64,7 +64,7 @@ String getNameForTargetPlatform(TargetPlatform platform) {
case
TargetPlatform
.
ios
:
return
"ios_release"
;
case
TargetPlatform
.
darwin_x64
:
return
"mac_
release
"
;
return
"mac_
debug
"
;
case
TargetPlatform
.
linux_x64
:
return
"linux-x64"
;
}
...
...
packages/flutter_tools/lib/src/cache.dart
View file @
f0a8ee2a
...
...
@@ -207,7 +207,7 @@ class FlutterEngine {
// Return a list of (cache directory path, download URL path) tuples.
List
<
List
<
String
>>
_getToolsDirs
()
{
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
)
return
<
List
<
String
>>[
<
String
>[
'linux-x64'
,
'linux-x64/artifacts.zip'
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment