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} }