Skip to content

Commit 571b0d8

Browse files
committed
linting
Signed-off-by: flakey5 <73616808+flakey5@users.noreply.github.com>
1 parent 080beaa commit 571b0d8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/utils/getLatestVersionMapping.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export async function getLatestVersionMapping(
3939
(await listR2Directory(client, PROD_BUCKET, r2Path));
4040

4141
if (listing === undefined) {
42-
throw new TypeError(`directory ${listing} does not exist`);
42+
throw new TypeError(`directory ${directory} does not exist`);
4343
}
4444

4545
return [

src/providers/r2Provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class R2Provider implements Provider {
143143
// Temporary: compare S3/cached listing result to what the KV provider returns
144144
if (this.ctx.env.ENVIRONMENT !== 'e2e-tests') {
145145
this.ctx.execution.waitUntil(
146-
(async () => {
146+
(async (): Promise<undefined> => {
147147
try {
148148
const kvResult = await kvProvider.readDirectory(path);
149149

0 commit comments

Comments
 (0)