From b0ce9247be1b050ce415789f21b68c8e3840021d Mon Sep 17 00:00:00 2001 From: Cory Miller <13227161+cory-miller@users.noreply.github.com> Date: Fri, 17 Feb 2023 21:26:06 +0000 Subject: [PATCH] try shell true --- packages/io/src/io.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/io/src/io.ts b/packages/io/src/io.ts index 1585d5ad..6ea8c1b5 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -140,7 +140,8 @@ export async function rmRF(inputPath: string): Promise { cmdPath, ['/s', '/c', 'rd /s /q "%inputPath%"'], { - env: {inputPath} + env: {inputPath}, + shell: true } ) } else { @@ -148,7 +149,8 @@ export async function rmRF(inputPath: string): Promise { cmdPath, ['/s', '/c', 'del /f /q /a "%inputPath%"'], { - env: {inputPath} + env: {inputPath}, + shell: true } ) }