From: Geoff Kimball Date: Wed, 16 Dec 2015 17:51:47 +0000 (-0800) Subject: Fix test inliner referencing the wrong CSS file X-Git-Tag: v2.0.0-rc.1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4bfb0c437dbd52eaead0dffde751e75cadb8e4b;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Fix test inliner referencing the wrong CSS file --- diff --git a/test/gulpfile.js b/test/gulpfile.js index 7be3f4ad..baa2078a 100644 --- a/test/gulpfile.js +++ b/test/gulpfile.js @@ -7,6 +7,8 @@ var yargs = require('yargs').argv; var sequence = require('run-sequence'); var browser = require('browser-sync'); +console.log(process.argv); + // Look for the --production flag var isProduction = !!(yargs.production); @@ -39,7 +41,7 @@ gulp.task('sass', function() { gulp.task('inline', function() { return gulp.src('../_build/*.html') .pipe(inline({ - css: '../_build/css/ink.css' + css: '../_build/css/app.css' })) .pipe(gulp.dest('../_build')); });