pull/496/head
Frostebite 2023-02-19 00:55:22 +00:00
parent cf55eba4c5
commit 98c1ffc025
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -5858,7 +5858,7 @@ class SharedWorkspaceLocking {
} }
return (yield SharedWorkspaceLocking.ReadLines(`aws s3 ls ${SharedWorkspaceLocking.workspaceRoot}${buildParametersContext.cacheKey}/`)) return (yield SharedWorkspaceLocking.ReadLines(`aws s3 ls ${SharedWorkspaceLocking.workspaceRoot}${buildParametersContext.cacheKey}/`))
.map((x) => x.replace(`/`, ``)) .map((x) => x.replace(`/`, ``))
.filter((x) => x.endsWith(`_${workspace}_workspace`)) .filter((x) => x.includes(workspace) && x.endsWith(`_workspace`))
.map((x) => Number(x))[0]; .map((x) => Number(x))[0];
}); });
} }

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -181,7 +181,7 @@ export class SharedWorkspaceLocking {
) )
) )
.map((x) => x.replace(`/`, ``)) .map((x) => x.replace(`/`, ``))
.filter((x) => x.endsWith(`_${workspace}_workspace`)) .filter((x) => x.includes(workspace) && x.endsWith(`_workspace`))
.map((x) => Number(x))[0]; .map((x) => Number(x))[0];
} }