You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-07-07 00:59:18 +02:00
7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
const gulpUtil = require('gulp-util');
|
|
|
|
module.exports = function errorHandler(error) {
|
|
gulpUtil.log(gulpUtil.colors.red(`Error (${error.plugin}): ${error.message}`));
|
|
this.emit('end');
|
|
};
|