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 5ad2c60 commit a149202Copy full SHA for a149202
src/interceptors/android/adb-commands.ts
@@ -64,6 +64,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
64
e.code === 'ENOENT' || // No ADB available
65
e.code === 'EACCES' || // ADB available, but we aren't allowed to run it
66
e.code === 'ECONNREFUSED' || // Tried to start ADB, but still couldn't connect
67
+ e.code === 'ENOTDIR' || // ADB path contains something that's not a directory
68
e.signal === 'SIGKILL' || // In some envs 'adb start-server' is always killed (why?)
69
(e.cmd && e.code) // ADB available, but "adb start-server" failed
70
) {
0 commit comments