From f1e183e98c031d5465445eae909d918442d43d0e Mon Sep 17 00:00:00 2001 From: Cory Miller <13227161+cory-miller@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:32:45 +0000 Subject: [PATCH] revert shell change --- packages/io/src/io.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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} } ) }