From: Nicolas Coden Date: Wed, 20 Jun 2018 21:58:34 +0000 (+0200) Subject: fix: fix completion callback called too many time in deploy task X-Git-Tag: v6.6.0~3^2~137^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb873365a69bd0c522f2a392c80c614da560c92;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix: fix completion callback called too many time in deploy task --- diff --git a/gulp/tasks/deploy.js b/gulp/tasks/deploy.js index b0e0d1875..c9ef0883f 100644 --- a/gulp/tasks/deploy.js +++ b/gulp/tasks/deploy.js @@ -96,8 +96,6 @@ gulp.task('deploy:dist', function(done) { .pipe(tsFilter) .pipe(gulp.dest('./dist/js')) .pipe(tsFilter.restore) - - .on('finish', done); }); });