1
0
Fork 0

revert shell change

pull/1344/head
Cory Miller 2023-02-21 15:32:45 +00:00
parent d155e954a1
commit f1e183e98c
1 changed files with 2 additions and 4 deletions

View File

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