mirror of https://github.com/actions/toolkit
switch to fs.rm
parent
5dde1c4cf6
commit
9529f35ffd
|
@ -9,6 +9,7 @@ export const {
|
||||||
readdir,
|
readdir,
|
||||||
readlink,
|
readlink,
|
||||||
rename,
|
rename,
|
||||||
|
rm,
|
||||||
rmdir,
|
rmdir,
|
||||||
stat,
|
stat,
|
||||||
symlink,
|
symlink,
|
||||||
|
|
|
@ -129,51 +129,65 @@ export async function rmRF(inputPath: string): Promise<void> {
|
||||||
try {
|
try {
|
||||||
const cmdPath = ioUtil.getCmdPath()
|
const cmdPath = ioUtil.getCmdPath()
|
||||||
|
|
||||||
const p = new Promise(async resolve => {
|
await ioUtil.rm(inputPath, {
|
||||||
setTimeout(() => {
|
recursive: true,
|
||||||
resolve('timeout')
|
force: true
|
||||||
}, 500)
|
|
||||||
|
|
||||||
let result: childProcess.ChildProcess
|
|
||||||
if (await ioUtil.isDirectory(inputPath, true)) {
|
|
||||||
const files = await ioUtil.readdir(inputPath)
|
|
||||||
for (const file of files) {
|
|
||||||
console.log(`first ioUtil.readdir: ${file}`)
|
|
||||||
}
|
|
||||||
|
|
||||||
result = childProcess.spawn(
|
|
||||||
cmdPath,
|
|
||||||
['/s', '/c', 'rd', '/s', '/q', `"${inputPath}"`]
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
result = childProcess.spawn(
|
|
||||||
cmdPath,
|
|
||||||
['/s', '/c', 'del', '/f', '/q', '/a', `"${inputPath}"`]
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
result.on('spawn', () => {
|
|
||||||
console.log(`spawn: ${result.spawnargs}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
result.stdout?.on('data', data => {
|
|
||||||
console.log(`stdout: ${data}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
result.stderr?.on('data', data => {
|
|
||||||
console.log(`stderr: ${data}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
result.on('error', err => {
|
|
||||||
console.log(`error: ${err}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
result.on('close', code => {
|
|
||||||
console.log(`close: ${code}`)
|
|
||||||
resolve(code)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
await p
|
|
||||||
|
// const p = new Promise(async resolve => {
|
||||||
|
// setTimeout(() => {
|
||||||
|
// resolve('timeout')
|
||||||
|
// }, 500)
|
||||||
|
|
||||||
|
// let result: childProcess.ChildProcess
|
||||||
|
// if (await ioUtil.isDirectory(inputPath, true)) {
|
||||||
|
// const files = await ioUtil.readdir(inputPath)
|
||||||
|
// for (const file of files) {
|
||||||
|
// console.log(`first ioUtil.readdir: ${file}`)
|
||||||
|
// }
|
||||||
|
|
||||||
|
// result = childProcess.spawn(cmdPath, [
|
||||||
|
// '/s',
|
||||||
|
// '/c',
|
||||||
|
// 'rd',
|
||||||
|
// '/s',
|
||||||
|
// '/q',
|
||||||
|
// `"${inputPath}"`
|
||||||
|
// ])
|
||||||
|
// } else {
|
||||||
|
// result = childProcess.spawn(cmdPath, [
|
||||||
|
// '/s',
|
||||||
|
// '/c',
|
||||||
|
// 'del',
|
||||||
|
// '/f',
|
||||||
|
// '/q',
|
||||||
|
// '/a',
|
||||||
|
// `"${inputPath}"`
|
||||||
|
// ])
|
||||||
|
// }
|
||||||
|
|
||||||
|
// result.on('spawn', () => {
|
||||||
|
// console.log(`spawn: ${result.spawnargs}`)
|
||||||
|
// })
|
||||||
|
|
||||||
|
// result.stdout?.on('data', data => {
|
||||||
|
// console.log(`stdout: ${data}`)
|
||||||
|
// })
|
||||||
|
|
||||||
|
// result.stderr?.on('data', data => {
|
||||||
|
// console.log(`stderr: ${data}`)
|
||||||
|
// })
|
||||||
|
|
||||||
|
// result.on('error', err => {
|
||||||
|
// console.log(`error: ${err}`)
|
||||||
|
// })
|
||||||
|
|
||||||
|
// result.on('close', code => {
|
||||||
|
// console.log(`close: ${code}`)
|
||||||
|
// resolve(code)
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// await p
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// if you try to delete a file that doesn't exist, desired result is achieved
|
// if you try to delete a file that doesn't exist, desired result is achieved
|
||||||
// other errors are valid
|
// other errors are valid
|
||||||
|
|
Loading…
Reference in New Issue