pull/496/head
Frostebite 2023-02-16 23:11:01 +00:00
parent 716c604f16
commit f310dd44b0
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -5868,7 +5868,7 @@ class SharedWorkspaceLocking {
}
const files = yield SharedWorkspaceLocking.ReadLines(`aws s3 ls ${SharedWorkspaceLocking.workspaceRoot}${buildParametersContext.cacheKey}/`);
const lockFilesExist = files.filter((x) => {
return x.includes(workspace) && x.includes(`_lock`);
return x.includes(workspace) && x.endsWith(`_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

@ -194,7 +194,7 @@ export class SharedWorkspaceLocking {
const lockFilesExist =
files.filter((x) => {
return x.includes(workspace) && x.includes(`_lock`);
return x.includes(workspace) && x.endsWith(`_lock`);
}).length > 0;
return lockFilesExist;