From 68255eba853648c12351f6f05ea10d599f8b264a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 5 Apr 2016 22:23:53 +0100 Subject: [PATCH] Fixed small errors --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index ae1f91f6..da07e6ce 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -53,7 +53,7 @@ app.copy = function (srcFiles, outputDir) { gulp.task('styles', function () { app.css([ config.bowerDir + '/font-awesome/css/font-awesome.css', - config.assetsDir + '/sass/site.sass', + config.assetsDir + '/sass/site.sass' ], 'site.css'); }); @@ -63,7 +63,7 @@ gulp.task('scripts', function () { config.bowerDir + '/bootstrap-sass/assets/javascripts/bootstrap.js', config.assetsDir + '/' + config.jsPattern ], 'site.js'); -}) +}); gulp.task('watch', function () { gulp.watch(config.sassPattern, ['styles']);