Commit fa52b456 authored by Devon Carew's avatar Devon Carew Committed by GitHub

set the FLUTTER_ROOT env var when invoking pub (#6041)

parent 54e208e4
......@@ -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)
......
......@@ -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)
......
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