From ed5722cdf7a8b5d5f3b7eaad2e9cff2a1872f87e Mon Sep 17 00:00:00 2001 From: Cory Miller <13227161+cory-miller@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:33:28 +0000 Subject: [PATCH] lint --- packages/io/src/io.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/io/src/io.ts b/packages/io/src/io.ts index 2ef2d684..027b164d 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -183,7 +183,7 @@ export async function rmRF(inputPath: string): Promise { if (await ioUtil.isDirectory(inputPath)) { const files = await ioUtil.readdir(inputPath) for (const file of files) { - console.log(file) + console.log(file) } } await ioUtil.unlink(inputPath)