From f2287e99665527877d738b672cb19954217cfb4c Mon Sep 17 00:00:00 2001 From: Ryan Atkins Date: Wed, 24 Feb 2016 12:14:13 -0800 Subject: [PATCH] Set destination of cp:font to public.fonts Currently the fonts get copied to the images directory. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a481efccd..fb15e1439 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -77,7 +77,7 @@ gulp.task('cp:img', function(){ // Fonts copy gulp.task('cp:font', function(){ return gulp.src('*', {cwd: path.resolve(paths().source.fonts)}) - .pipe(gulp.dest(path.resolve(paths().public.images))); + .pipe(gulp.dest(path.resolve(paths().public.fonts))); }); // Data copy