mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-01-03 12:42:58 +08:00
prettier
This commit is contained in:
parent
9dea373bba
commit
31c555afda
@ -97,10 +97,12 @@ export async function streamExtractExternal(
|
|||||||
const fullPath = path.normalize(path.join(directory, entry.path))
|
const fullPath = path.normalize(path.join(directory, entry.path))
|
||||||
core.debug(`Extracting artifact entry: ${fullPath}`)
|
core.debug(`Extracting artifact entry: ${fullPath}`)
|
||||||
const writeStream = createWriteStream(fullPath)
|
const writeStream = createWriteStream(fullPath)
|
||||||
promises.push(new Promise((resolve, reject) => {
|
promises.push(
|
||||||
writeStream.on('finish', () => resolve())
|
new Promise((resolve, reject) => {
|
||||||
writeStream.on('error', reject)
|
writeStream.on('finish', () => resolve())
|
||||||
}))
|
writeStream.on('error', reject)
|
||||||
|
})
|
||||||
|
)
|
||||||
entry.pipe(writeStream)
|
entry.pipe(writeStream)
|
||||||
})
|
})
|
||||||
.on('end', () => {
|
.on('end', () => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user