1
0
Fork 0

try shell true

pull/1344/head
Cory Miller 2023-02-17 21:26:06 +00:00
parent 5ff5e4f9f0
commit b0ce9247be
1 changed files with 4 additions and 2 deletions

View File

@ -140,7 +140,8 @@ export async function rmRF(inputPath: string): Promise<void> {
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<void> {
cmdPath,
['/s', '/c', 'del /f /q /a "%inputPath%"'],
{
env: {inputPath}
env: {inputPath},
shell: true
}
)
}