From 8fe6a9a61ced3387d6b35b4fac7c23d286397fc0 Mon Sep 17 00:00:00 2001 From: Leonardo Merlin Date: Wed, 12 Aug 2015 12:37:39 -0300 Subject: [PATCH] Fix font task for build process --- gulp/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/build.js b/gulp/build.js index 37d2b09..2dddc1b 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -68,7 +68,7 @@ gulp.task('html', ['inject', 'partials'], function () { // Only applies for fonts from bower dependencies // Custom fonts are handled by the "other" task gulp.task('fonts', function () { - return gulp.src($.mainBowerFiles()) + return gulp.src($.mainBowerFiles().concat('bower_components/bootstrap-sass-official/assets/fonts/bootstrap/*')) .pipe($.filter('**/*.{eot,svg,ttf,woff,woff2}')) .pipe($.flatten()) .pipe(gulp.dest(path.join(conf.paths.dist, '/fonts/'))); -- libgit2 0.21.2