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
fa52b456
Commit
fa52b456
authored
Sep 26, 2016
by
Devon Carew
Committed by
GitHub
Sep 26, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set the FLUTTER_ROOT env var when invoking pub (#6041)
parent
54e208e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
process.dart
packages/flutter_tools/lib/src/base/process.dart
+16
-6
pub.dart
packages/flutter_tools/lib/src/dart/pub.dart
+2
-1
No files found.
packages/flutter_tools/lib/src/base/process.dart
View file @
fa52b456
...
...
@@ -12,15 +12,23 @@ typedef String StringConverter(String string);
// TODO(ianh): We have way too many ways to run subprocesses in this project.
Map
<
String
,
String
>
_environment
(
bool
allowReentrantFlutter
)
{
return
allowReentrantFlutter
?
<
String
,
String
>{
'FLUTTER_ALREADY_LOCKED'
:
'true'
}
:
null
;
Map
<
String
,
String
>
_environment
(
bool
allowReentrantFlutter
,
[
Map
<
String
,
String
>
environment
])
{
if
(
allowReentrantFlutter
)
{
if
(
environment
==
null
)
environment
=
<
String
,
String
>{
'FLUTTER_ALREADY_LOCKED'
:
'true'
};
else
environment
[
'FLUTTER_ALREADY_LOCKED'
]
=
'true'
;
}
return
environment
;
}
/// This runs the command in the background from the specified working
/// directory. Completes when the process has been started.
Future
<
Process
>
runCommand
(
List
<
String
>
cmd
,
{
String
workingDirectory
,
bool
allowReentrantFlutter:
false
bool
allowReentrantFlutter:
false
,
Map
<
String
,
String
>
environment
})
async
{
_traceCommand
(
cmd
,
workingDirectory:
workingDirectory
);
String
executable
=
cmd
[
0
];
...
...
@@ -29,7 +37,7 @@ Future<Process> runCommand(List<String> cmd, {
executable
,
arguments
,
workingDirectory:
workingDirectory
,
environment:
_environment
(
allowReentrantFlutter
)
environment:
_environment
(
allowReentrantFlutter
,
environment
)
);
return
process
;
}
...
...
@@ -42,12 +50,14 @@ Future<int> runCommandAndStreamOutput(List<String> cmd, {
String
prefix:
''
,
bool
trace:
false
,
RegExp
filter
,
StringConverter
mapFunction
StringConverter
mapFunction
,
Map
<
String
,
String
>
environment
})
async
{
Process
process
=
await
runCommand
(
cmd
,
workingDirectory:
workingDirectory
,
allowReentrantFlutter:
allowReentrantFlutter
allowReentrantFlutter:
allowReentrantFlutter
,
environment:
environment
);
StreamSubscription
<
String
>
subscription
=
process
.
stdout
.
transform
(
UTF8
.
decoder
)
...
...
packages/flutter_tools/lib/src/dart/pub.dart
View file @
fa52b456
...
...
@@ -50,7 +50,8 @@ Future<int> pubGet({
int
code
=
await
runCommandAndStreamOutput
(
<
String
>[
sdkBinaryName
(
'pub'
),
'--verbosity=warning'
,
command
,
'--no-packages-dir'
,
'--no-precompile'
],
workingDirectory:
directory
,
mapFunction:
_filterOverrideWarnings
mapFunction:
_filterOverrideWarnings
,
environment:
<
String
,
String
>{
'FLUTTER_ROOT'
:
Cache
.
flutterRoot
}
);
status
.
stop
(
showElapsedTime:
true
);
if
(
code
!=
0
)
...
...
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