1
0
mirror of https://github.com/Mibew/mibew.git synced 2025-02-23 23:04:32 +03:00

Fix bug with race condition on build

This commit is contained in:
Dmitriy Simushev 2015-04-14 11:39:33 +00:00
parent 7d3558460b
commit 3307ba01dc

View File

@ -147,9 +147,9 @@ gulp.task('bower-install', function(callback) {
// header. Add the header manually.
.pipe(header("// json2.js. Public Domain. See http://www.JSON.org/js.html\n"))
.pipe(rename('json/json2.min.js'))
);
)
.pipe(gulp.dest(config.jsVendorPath));
stream.pipe(gulp.dest(config.jsVendorPath));
stream
.on('error', callback)
.on('end', callback);