From 242eb6d733cd529bcbe3e21f3b2299b024a94650 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 16 Nov 2016 09:36:22 -0800 Subject: [PATCH] [Build] Restore missing semicolon Semicolons are our friends. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 225d2367e3..380f233758 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -137,7 +137,7 @@ gulp.task('checkstyle', function () { .pipe(jscs()) .pipe(jscs.reporter()) .pipe(jscs.reporter('jscs-html-reporter')).on('finish', moveReport) - .pipe(jscs.reporter('fail')) + .pipe(jscs.reporter('fail')); }); gulp.task('fixstyle', function () {