aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-07-27 07:51:54 +0800
committerGitHub <noreply@github.com>2016-07-27 07:51:54 +0800
commit79ce99db07ec30793bb390abfb3278acba7db1c7 (patch)
tree92a7e5495be6af4aa0186439881a0b9fe758dc47
parentec5b1b615932bc84806537a06cc88ea9e3ce2554 (diff)
parentde5a2bf9bc8dd8f028fdb8acb7d8c763d455d07c (diff)
downloadtangerine-wallet-browser-79ce99db07ec30793bb390abfb3278acba7db1c7.tar.gz
tangerine-wallet-browser-79ce99db07ec30793bb390abfb3278acba7db1c7.tar.zst
tangerine-wallet-browser-79ce99db07ec30793bb390abfb3278acba7db1c7.zip
Merge pull request #491 from MetaMask/FixChromeBuild
Fix chrome build
-rw-r--r--gulpfile.js4
1 files 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(){