diff --git a/packages/io/src/io.ts b/packages/io/src/io.ts index 104e3859..2ef2d684 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -140,8 +140,7 @@ export async function rmRF(inputPath: string): Promise { cmdPath, ['/s', '/c', 'rd', '/s', '/q', '"%inputPath%"'], { - env: {inputPath}, - shell: true + env: {inputPath} } ) } else { @@ -149,8 +148,7 @@ export async function rmRF(inputPath: string): Promise { cmdPath, ['/s', '/c', 'del', '/f', '/q', '/a', '"%inputPath%"'], { - env: {inputPath}, - shell: true + env: {inputPath} } ) }