mirror of
https://github.com/coder/code-server.git
synced 2026-05-12 23:37:25 +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