1
0
Fork 0

Fix reject call in package artifact's upload-zip.ts (#1125)

pull/1305/head
Eric Cornelissen 2023-01-06 16:15:36 +01:00 committed by GitHub
parent 03d6c2479c
commit 06c3c38ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ export async function createGZipFileOnDisk(
outputStream.on('error', error => {
// eslint-disable-next-line no-console
console.log(error)
reject
reject(error)
})
})
}