Merge "Explicitly show the destination filename for a bugreport." am: ca876d8037 am: 3ff439fe77 am: 8f5ed79e34 am: 4d98c28e36

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1343880

Change-Id: I50577dda5b564b1fbc26c033af98a1bb91cddf29
This commit is contained in:
Treehugger Robot 2020-06-19 21:42:42 +00:00 committed by Automerger Merge Worker
commit 324a76ab8e

View file

@ -104,7 +104,9 @@ class BugreportStandardStreamsCallback : public StandardStreamsCallbackInterface
SetLineMessage("pulling");
status_ =
br_->DoSyncPull(srcs, destination.c_str(), false, line_message_.c_str()) ? 0 : 1;
if (status_ != 0) {
if (status_ == 0) {
printf("Bug report copied to %s\n", destination.c_str());
} else {
fprintf(stderr,
"Bug report finished but could not be copied to '%s'.\n"
"Try to run 'adb pull %s <directory>'\n"