We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c45fb8d commit ca0f6e7Copy full SHA for ca0f6e7
lib/utils/adb.dart
@@ -136,7 +136,7 @@ abstract class Adb {
136
_runningProcesses.add(processFuture);
137
138
var process = await processFuture;
139
- if (process.stderr != null && process.stderr.toString().isNotEmpty) {
+ if (process.stderr != null && process.stderr.toString().isNotEmpty && process.exitCode != 0) {
140
final error = process.stderr;
141
Trace.verbose("Error $error");
142
debugPrintStack();
0 commit comments