We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39d6c38 commit dfe4902Copy full SHA for dfe4902
1 file changed
src/utils/fs.rs
@@ -90,7 +90,11 @@ impl FSEmu for BackendADB {
90
91
let output = cmd.output()?;
92
if !output.status.success() {
93
- let message = format!("adb exited with code {}", output.status.code().unwrap_or(-1));
+ let message = format!(
94
+ "adb exited with code {} detailing {}",
95
+ output.status.code().unwrap_or(-1),
96
+ String::from_utf8(output.stderr).unwrap()
97
+ );
98
return Err(Error::descriptive(message));
99
}
100
0 commit comments