mirror of
https://github.com/coder/code-server.git
synced 2026-07-03 15:42:23 +02:00
Check EISDIR for Mac when performing mkdir
This commit is contained in:
@@ -54,7 +54,7 @@ export class SharedProcess {
|
||||
try {
|
||||
fs.mkdirSync(dir);
|
||||
} catch (ex) {
|
||||
if (ex.code !== "EEXIST") {
|
||||
if (ex.code !== "EEXIST" && ex.code !== "EISDIR") {
|
||||
throw ex;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user