We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcc649e commit 1af8f92Copy full SHA for 1af8f92
1 file changed
lib/domain/fdupes_bloc.dart
@@ -179,6 +179,7 @@ class FdupesBloc extends Bloc<FdupesEvent, FdupesState> {
179
}
180
});
181
stderr.addStream(stderrBC);
182
+ // each line contains the absolute path of a duplicate file
183
List<String> lines = await process.stdout.transform(utf8.decoder).transform(const LineSplitter()).toList();
184
lines.forEach((element) {
185
print(element);
0 commit comments