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); ...@@ -12,15 +12,23 @@ typedef String StringConverter(String string);
// TODO(ianh): We have way too many ways to run subprocesses in this project. // TODO(ianh): We have way too many ways to run subprocesses in this project.
Map<String, String> _environment(bool allowReentrantFlutter) { Map<String, String> _environment(bool allowReentrantFlutter, [Map<String, String> environment]) {
return allowReentrantFlutter ? <String, String>{ 'FLUTTER_ALREADY_LOCKED': 'true' } : null; 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 /// This runs the command in the background from the specified working
/// directory. Completes when the process has been started. /// directory. Completes when the process has been started.
Future<Process> runCommand(List<String> cmd, { Future<Process> runCommand(List<String> cmd, {
String workingDirectory, String workingDirectory,
bool allowReentrantFlutter: false bool allowReentrantFlutter: false,
Map<String, String> environment
}) async { }) async {
_traceCommand(cmd, workingDirectory: workingDirectory); _traceCommand(cmd, workingDirectory: workingDirectory);
String executable = cmd[0]; String executable = cmd[0];
...@@ -29,7 +37,7 @@ Future<Process> runCommand(List<String> cmd, { ...@@ -29,7 +37,7 @@ Future<Process> runCommand(List<String> cmd, {
executable, executable,
arguments, arguments,
workingDirectory: workingDirectory, workingDirectory: workingDirectory,
environment: _environment(allowReentrantFlutter) environment: _environment(allowReentrantFlutter, environment)
); );
return process; return process;
} }
...@@ -42,12 +50,14 @@ Future<int> runCommandAndStreamOutput(List<String> cmd, { ...@@ -42,12 +50,14 @@ Future<int> runCommandAndStreamOutput(List<String> cmd, {
String prefix: '', String prefix: '',
bool trace: false, bool trace: false,
RegExp filter, RegExp filter,
StringConverter mapFunction StringConverter mapFunction,
Map<String, String> environment
}) async { }) async {
Process process = await runCommand( Process process = await runCommand(
cmd, cmd,
workingDirectory: workingDirectory, workingDirectory: workingDirectory,
allowReentrantFlutter: allowReentrantFlutter allowReentrantFlutter: allowReentrantFlutter,
environment: environment
); );
StreamSubscription<String> subscription = process.stdout StreamSubscription<String> subscription = process.stdout
.transform(UTF8.decoder) .transform(UTF8.decoder)
......
...@@ -50,7 +50,8 @@ Future<int> pubGet({ ...@@ -50,7 +50,8 @@ Future<int> pubGet({
int code = await runCommandAndStreamOutput( int code = await runCommandAndStreamOutput(
<String>[sdkBinaryName('pub'), '--verbosity=warning', command, '--no-packages-dir', '--no-precompile'], <String>[sdkBinaryName('pub'), '--verbosity=warning', command, '--no-packages-dir', '--no-precompile'],
workingDirectory: directory, workingDirectory: directory,
mapFunction: _filterOverrideWarnings mapFunction: _filterOverrideWarnings,
environment: <String, String>{ 'FLUTTER_ROOT': Cache.flutterRoot }
); );
status.stop(showElapsedTime: true); status.stop(showElapsedTime: true);
if (code != 0) 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