Renamed error var
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-08-27 14:11:22 +02:00
parent fd67a85fe8
commit 55d047c0dd
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ module.exports = Self => {
if (filePath && fs.existsSync(filePath))
await fs.unlink(filePath);
} catch (error) {
throw new Error('ErrorHandler error: ', error);
} catch (err) {
throw new Error('ErrorHandler error: ', err);
}
}
};