pull/496/head
Frostebite 2023-02-16 22:14:21 +00:00
parent 3809721519
commit 0a7de0ffc2
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -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;
});

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -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;