Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Add callback to sequence call
Browse files Browse the repository at this point in the history
Ref #24
  • Loading branch information
jbrodriguez committed Dec 12, 2017
1 parent d978367 commit ff473e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ gulp.task('build', function(cb) {

// config.pipeline is an array of task names
// i.e.: ['images', 'styles']
sequence(...config.pipeline)
sequence(...config.pipeline, cb)
})

// .pipe(changed('staging/img'))
Expand Down Expand Up @@ -128,7 +128,7 @@ gulp.task('reference', function() {
})

gulp.task('fingerprint', function(cb) {
sequence('revision', 'reference')
sequence('revision', 'reference', cb)
})

gulp.task('html', function(cb) {
Expand Down

0 comments on commit ff473e7

Please sign in to comment.