From 143b802c0acd2b343912efad30e989b036107279 Mon Sep 17 00:00:00 2001 From: Cory Miller <13227161+cory-miller@users.noreply.github.com> Date: Fri, 17 Feb 2023 19:48:08 +0000 Subject: [PATCH] try quiet mode --- 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 258b7e6d..1720ce11 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -145,7 +145,7 @@ export async function rmRF(inputPath: string): Promise { } else { result = childProcess.spawn( cmdPath, - ['/s', '/c', '"del /f /a "%inputPath%""'], + ['/s', '/c', '"del /f /q /a "%inputPath%""'], { env: {inputPath} }