We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f54ca6 commit cdfe3b0Copy full SHA for cdfe3b0
src/interceptors/android/adb-commands.ts
@@ -64,6 +64,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
64
if (isErrorLike(e) && (
65
e.code === 'ENOENT' || // No ADB available
66
e.code === 'EACCES' || // ADB available, but we aren't allowed to run it
67
+ e.code === 'EPERM' || // Permissions error launching ADB
68
e.code === 'ECONNREFUSED' || // Tried to start ADB, but still couldn't connect
69
e.code === 'ENOTDIR' || // ADB path contains something that's not a directory
70
e.signal === 'SIGKILL' || // In some envs 'adb start-server' is always killed (why?)
0 commit comments