From 05125dc26c7892683e4669f2e17895c2e2a379be Mon Sep 17 00:00:00 2001 From: chris062689 Date: Sun, 4 Jun 2017 14:30:07 -0400 Subject: [PATCH] Fixing runtime errors with gulpfile. --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 554f4ac..790f2ae 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -57,10 +57,10 @@ gulp.task('images', ['hugo'], () => ( .pipe(gulp.dest('./')), gulp.src(`${distPath}/images/banners/*`, {base: './'}) .pipe(jimp({ sizes: [{"width": 824, "height": 306 }] })) - .pipe(gulp.dest('./')) + .pipe(gulp.dest('./')), gulp.src(`${distPath}/images/game/boxart/*`, {base: './'}) .pipe(jimp({ sizes: [{"width": 328, "height": 300 }] })) - .pipe(gulp.dest('./')) + .pipe(gulp.dest('./')), gulp.src(`${distPath}/images/game/icons/*`, {base: './'}) .pipe(jimp({ sizes: [{"width": 48, "height": 48 }] })) .pipe(gulp.dest('./'))