mirror of
https://gitea.com/actions/checkout.git
synced 2025-08-18 21:23:21 +08:00
.
This commit is contained in:
@ -142,15 +142,16 @@ function downloadFile(url: string, fileStream: WriteStream): Promise<void> {
|
||||
return
|
||||
}
|
||||
|
||||
response.on('data', chunk => {
|
||||
fileStream.write(chunk)
|
||||
})
|
||||
// response.on('data', chunk => {
|
||||
// fileStream.write(chunk)
|
||||
// })
|
||||
response.on('end', () => {
|
||||
resolve()
|
||||
})
|
||||
response.on('error', err => {
|
||||
reject(err)
|
||||
})
|
||||
response.pipe(fileStream)
|
||||
})
|
||||
} catch (err) {
|
||||
reject(err)
|
||||
|
Reference in New Issue
Block a user