From b8ca95f714c0bbf08d52155955e71e9c62437773 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 5 Jan 2016 18:57:18 +0000 Subject: [PATCH] Fixed gulp images talk --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 36a8ebd3..62bc4c2f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -20,9 +20,9 @@ gulp.task('compass', function () { .pipe(gulp.dest(config.cssDir)); }); -gulp.task('image', function () { +gulp.task('images', function () { // Minify images. - gulp.src(imagesDir + '/*') + gulp.src(config.imagesDir + '/*') .pipe(plugins.imagemin()) .pipe(gulp.dest(config.imagesDir)); });