Skip to content

Commit 948c6b0

Browse files
committed
Log ADB setup script output
1 parent 69475d5 commit 948c6b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interceptors/android/adb-commands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ export async function injectSystemCertificate(
256256
);
257257

258258
// Actually run the script that we just pushed above, as root
259-
await run(adbClient, deviceId, rootCmd.concat('sh', injectionScriptPath));
259+
const scriptOutput = await run(adbClient, deviceId, rootCmd.concat('sh', injectionScriptPath));
260+
console.log(scriptOutput);
260261
}
261262

262263
export async function bringToFront(

0 commit comments

Comments
 (0)