From de5a2bf9bc8dd8f028fdb8acb7d8c763d455d07c Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 26 Jul 2016 16:48:48 -0700 Subject: [PATCH] Fix chrome build --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d63a95975..976671055 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -57,13 +57,13 @@ gulp.task('manifest:cleanup', function() { delete json.applications return json })) - .pipe(gulp.dest('./dist/chrome', { overwrite: false })) + .pipe(gulp.dest('./dist/chrome', { overwrite: true })) }) gulp.task('copy:chrome', gulp.series( copyTask({ source: './dist/firefox', destination: './dist/chrome', - pattern: '**/[^manifest]*' + pattern: '**/*' }), 'manifest:cleanup')) gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'copy:chrome')) gulp.task('copy:watch', function(){