Removed callback syntax
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
47f1ad9a0c
commit
aeb50b2c19
|
@ -59,17 +59,10 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const writeStream = fs.createWriteStream(filePath);
|
const writeStream = fs.createWriteStream(filePath);
|
||||||
writeStream.on('open', () => {
|
writeStream.on('open', () => response.pipe(writeStream));
|
||||||
response.pipe(writeStream);
|
writeStream.on('error', async error =>
|
||||||
});
|
await errorHandler(image.itemFk, error, filePath));
|
||||||
|
writeStream.on('finish', writeStream.end());
|
||||||
writeStream.on('error', async error => {
|
|
||||||
await errorHandler(image.itemFk, error, filePath);
|
|
||||||
});
|
|
||||||
|
|
||||||
writeStream.on('finish', async function() {
|
|
||||||
writeStream.end();
|
|
||||||
});
|
|
||||||
|
|
||||||
writeStream.on('close', async function() {
|
writeStream.on('close', async function() {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue