Skip to content

Commit

Permalink
Merge pull request mozilla#9779 from timvandermeij/gulpfile
Browse files Browse the repository at this point in the history
Remove dead code in the `gh-pages-prepare` task in the Gulpfile
  • Loading branch information
timvandermeij authored Jun 4, 2018
2 parents 56c2a11 + a4df2fa commit 553fea8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ var MOZCENTRAL_BASELINE_DIR = BUILD_DIR + 'mozcentral.baseline/';
var GENERIC_DIR = BUILD_DIR + 'generic/';
var COMPONENTS_DIR = BUILD_DIR + 'components/';
var MINIFIED_DIR = BUILD_DIR + 'minified/';
var CHROME_BUILD_DIR = BUILD_DIR + 'chromium/';
var JSDOC_BUILD_DIR = BUILD_DIR + 'jsdoc/';
var GH_PAGES_DIR = BUILD_DIR + 'gh-pages/';
var SRC_DIR = 'src/';
Expand Down Expand Up @@ -1096,8 +1095,6 @@ gulp.task('gh-pages-prepare', ['web-pre'], function () {
return merge([
vfs.src(GENERIC_DIR + '**/*', { base: GENERIC_DIR, stripBOM: false, })
.pipe(gulp.dest(GH_PAGES_DIR)),
gulp.src(CHROME_BUILD_DIR + '*.crx')
.pipe(gulp.dest(GH_PAGES_DIR + EXTENSION_SRC_DIR + 'chromium/')),
gulp.src('test/features/**/*', { base: 'test/', })
.pipe(gulp.dest(GH_PAGES_DIR)),
gulp.src(JSDOC_BUILD_DIR + '**/*', { base: JSDOC_BUILD_DIR, })
Expand Down

0 comments on commit 553fea8

Please sign in to comment.