Closed KristianDD closed 6 years ago
On Windows machines we were sending Windows style paths to adb mkdir which resulted in Read-only file system error from adb. The reason for that behavior is that when executed on Windows machines path normalize uses the Windows style path separator.
adb mkdir
Read-only file system
adb
path normalize
On Windows machines we were sending Windows style paths to
adb mkdir
which resulted inRead-only file system
error fromadb
. The reason for that behavior is that when executed on Windows machinespath normalize
uses the Windows style path separator.