change 2 print calls to printStatus (#13206)

This commit is contained in:
Devon Carew 2017-11-27 08:13:24 -08:00 committed by GitHub
parent d776f64f4e
commit c25558d426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ class UpdatePackagesCommand extends FlutterCommand {
if (isPrintTransitiveClosure) {
tree._dependencyTree.forEach((String from, Set<String> to) {
print('$from -> $to');
printStatus('$from -> $to');
});
return;
}
@ -256,7 +256,7 @@ class UpdatePackagesCommand extends FlutterCommand {
if (path != null)
buf.write(' <- ');
}
print(buf);
printStatus(buf.toString());
}
if (paths.isEmpty) {