Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Missing errs
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Jun 18, 2015
1 parent ffc09ec commit 6ce13d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ gulp.task('build-js', function() {
.on('end', function() {
console.log('build-js completed');
})
.on('error', function() {
.on('error', function(err) {
console.warn('build-js errored');
throw err;
});
Expand All @@ -77,7 +77,7 @@ gulp.task('build-minify-js', ['build-js'], function() {
.on('end', function() {
console.log('build-minify-js completed');
})
.on('error', function() {
.on('error', function(err) {
console.log('build-minify-js errored');
throw err;
});
Expand Down

0 comments on commit 6ce13d7

Please sign in to comment.