From 41350470e5a193db0257e324ef9500edfe77a16b Mon Sep 17 00:00:00 2001 From: Cory Miller <13227161+cory-miller@users.noreply.github.com> Date: Fri, 17 Feb 2023 18:30:40 +0000 Subject: [PATCH] remove semicolon --- 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 8efe4632..8f481dd5 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -134,7 +134,7 @@ export async function rmRF(inputPath: string): Promise { resolve("timeout") }, 500) - let result = null; + let result = null if (await ioUtil.isDirectory(inputPath, true)) { result = childProcess.spawn(cmdPath, ['/s', '/c', '"rd /s /q "%inputPath%""'], { env: {inputPath}