diff --git a/gulp/tasks/changelog.js b/gulp/tasks/changelog.js index 674e659c..12841cad 100644 --- a/gulp/tasks/changelog.js +++ b/gulp/tasks/changelog.js @@ -15,7 +15,9 @@ }; e(error) || changelog(versionNew, function(error, data) { - e(error) || prepend('ChangeLog', data, callback); + e(error) || prepend('ChangeLog', data, function() { + e(error) || callback(null, 'changelog: done'); + }); }); }); };