1
0
Fork 0

remove semicolon

pull/1344/head
Cory Miller 2023-02-17 18:30:40 +00:00
parent a730b5ca5f
commit 41350470e5
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ export async function rmRF(inputPath: string): Promise<void> {
resolve("timeout") resolve("timeout")
}, 500) }, 500)
let result = null; let result = null
if (await ioUtil.isDirectory(inputPath, true)) { if (await ioUtil.isDirectory(inputPath, true)) {
result = childProcess.spawn(cmdPath, ['/s', '/c', '"rd /s /q "%inputPath%""'], { result = childProcess.spawn(cmdPath, ['/s', '/c', '"rd /s /q "%inputPath%""'], {
env: {inputPath} env: {inputPath}