mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Add adb output to error message when install fails
This commit is contained in:
parent
0a6a71973e
commit
de2acbd495
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue