fixes
parent
28be03b5d6
commit
95e1c1e09d
|
@ -5740,8 +5740,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`))
|
.filter((x) => x.endsWith(`_workspace`));
|
||||||
.map((x) => x.replace(`_workspace`, ``));
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
static DoesCacheKeyTopLevelExist(buildParametersContext) {
|
static DoesCacheKeyTopLevelExist(buildParametersContext) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -22,8 +22,7 @@ export class SharedWorkspaceLocking {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.map((x) => x.replace(`/`, ``))
|
.map((x) => x.replace(`/`, ``))
|
||||||
.filter((x) => x.endsWith(`_workspace`))
|
.filter((x) => x.endsWith(`_workspace`));
|
||||||
.map((x) => x.replace(`_workspace`, ``));
|
|
||||||
}
|
}
|
||||||
public static async DoesCacheKeyTopLevelExist(buildParametersContext: BuildParameters) {
|
public static async DoesCacheKeyTopLevelExist(buildParametersContext: BuildParameters) {
|
||||||
const lines = await SharedWorkspaceLocking.ReadLines(`aws s3 ls ${SharedWorkspaceLocking.workspaceRoot}`);
|
const lines = await SharedWorkspaceLocking.ReadLines(`aws s3 ls ${SharedWorkspaceLocking.workspaceRoot}`);
|
||||||
|
|
Loading…
Reference in New Issue