Improve "adb install"'s error message slightly.

We still don't really have a clue what went wrong, but "Failed to write"
made it sound like we did.

Change-Id: Ic58b13202e2d8ea6b095f7046db9d0771d77ce65
This commit is contained in:
Elliott Hughes 2015-12-17 14:04:38 -08:00
parent b6dfab03b6
commit fe01885c9b
1 changed files with 1 additions and 2 deletions

View File

@ -1860,8 +1860,7 @@ static int install_app(TransportType transport, const char* serial, int argc, co
adb_close(remoteFd);
if (strncmp("Success", buf, 7)) {
fprintf(stderr, "Failed to write %s\n", file);
fputs(buf, stderr);
fprintf(stderr, "Failed to install %s: %s", file, buf);
return 1;
}
fputs(buf, stderr);