mirror of https://github.com/actions/toolkit
prettier
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…
Reference in New Issue