fixes
parent
3809721519
commit
0a7de0ffc2
|
@ -5874,7 +5874,7 @@ class SharedWorkspaceLocking {
|
||||||
throw new Error(`Workspace file doesn't exist`);
|
throw new Error(`Workspace file doesn't exist`);
|
||||||
}
|
}
|
||||||
const lockFilesExist = files.filter((x) => {
|
const lockFilesExist = files.filter((x) => {
|
||||||
return x.includes(workspace) && x.includes(`_workspace_lock`);
|
return x.includes(workspace) && x.includes(`_lock`);
|
||||||
}).length > 0;
|
}).length > 0;
|
||||||
return lockFilesExist;
|
return lockFilesExist;
|
||||||
});
|
});
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -202,7 +202,7 @@ export class SharedWorkspaceLocking {
|
||||||
|
|
||||||
const lockFilesExist =
|
const lockFilesExist =
|
||||||
files.filter((x) => {
|
files.filter((x) => {
|
||||||
return x.includes(workspace) && x.includes(`_workspace_lock`);
|
return x.includes(workspace) && x.includes(`_lock`);
|
||||||
}).length > 0;
|
}).length > 0;
|
||||||
|
|
||||||
return lockFilesExist;
|
return lockFilesExist;
|
||||||
|
|
Loading…
Reference in New Issue