refs #5684 Fixed no error
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2023-09-18 07:10:12 +02:00
parent 15d471bf99
commit 690df509d3
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ module.exports = Self => {
ftpClient.exec((err, response) => {
if (err || response.error) {
console.debug(`Error downloading checksum file... ${response.error}`);
return reject(err);
return reject(response.error || err);
}
resolve(response);