Index: sdk/lib/_internal/pub_generated/lib/src/git.dart |
diff --git a/sdk/lib/_internal/pub_generated/lib/src/git.dart b/sdk/lib/_internal/pub_generated/lib/src/git.dart |
index 1e3291f0ef8c39f83953c623046fb0b6c18dc7f4..a574e8a6865e7814c2ef024dc1b502106a2b0dfa 100644 |
--- a/sdk/lib/_internal/pub_generated/lib/src/git.dart |
+++ b/sdk/lib/_internal/pub_generated/lib/src/git.dart |
@@ -50,13 +50,17 @@ Future<List<String>> run(List<String> args, {String workingDir, Map<String, |
"Cannot find a Git executable.\n" "Please ensure Git is correctly installed."); |
} |
+ log.muteProgress(); |
return runProcess( |
_gitCommand, |
args, |
workingDir: workingDir, |
environment: environment).then((result) { |
if (!result.success) throw new GitException(args, result.stderr.join("\n")); |
+ |
return result.stdout; |
+ }).whenComplete(() { |
+ log.unmuteProgress(); |
}); |
} |