fixes
parent
0b3dc5f715
commit
9d2f8791d2
|
@ -5874,7 +5874,7 @@ class SharedWorkspaceLocking {
|
|||
throw new Error(`Workspace file doesn't exist`);
|
||||
}
|
||||
const lockFilesExist = files.filter((x) => {
|
||||
return x.endsWith(`${workspace}_lock`);
|
||||
return x.includes(workspace) && x.includes(`_workspace_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.endsWith(`${workspace}_lock`);
|
||||
return x.includes(workspace) && x.includes(`_workspace_lock`);
|
||||
}).length > 0;
|
||||
|
||||
return lockFilesExist;
|
||||
|
|
Loading…
Reference in New Issue