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