diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-19 21:39:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-19 21:39:35 +0200 |
commit | d7a42a44be107d048447dcaeba7c508402096d90 (patch) | |
tree | 246e754cf004e0a4ea36f27af18a943f1da26927 /platform/android/export/export.cpp | |
parent | 0a6a71973e50e31fef7b91658ab713ae5db5033f (diff) | |
parent | de2acbd4955950b5d37eca396b6ec4aadb872578 (diff) |
Merge pull request #49746 from madmiraal/fix-49588
Add adb output to error message when install fails
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 1a0c206e28..4262cc1a50 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1849,7 +1849,7 @@ public: err = OS::get_singleton()->execute(adb, args, &output, &rv, true); print_verbose(output); if (err || rv != 0) { - EditorNode::add_io_error("Could not install to device."); + EditorNode::add_io_error("Could not install to device: " + output); CLEANUP_AND_RETURN(ERR_CANT_CREATE); } |