fixes
parent
cf55eba4c5
commit
98c1ffc025
|
@ -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];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue