Skip to content

Commit

Permalink
Fix reject call in package artifact's upload-zip.ts (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericcornelissen committed Jan 6, 2023
1 parent 03d6c24 commit 06c3c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/artifact/src/internal/upload-gzip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function createGZipFileOnDisk(
outputStream.on('error', error => {
// eslint-disable-next-line no-console
console.log(error)
reject
reject(error)
})
})
}
Expand Down

0 comments on commit 06c3c38

Please sign in to comment.