Skip to content
This repository was archived by the owner on Jul 21, 2019. It is now read-only.

Commit 90fe8de

Browse files
author
Christopher Mills
committed
Let gulp look for all the images in 2016, no html.
It looks like the images that were in these files weren't being copied across from /public -> /dist when ./netlify-production.sh ran the gulp task to copy stuff across. Signed-off-by: Chris M <[email protected]>
1 parent 4005daa commit 90fe8de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulp/tasks/copy-static-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gulp.task('copy-other-images', function() {
2222
})
2323

2424
gulp.task('copy-old-images', function () {
25-
return gulp.src(['public/events/2015*/**/', 'public/events/**/2016*/**/', '!**/*.html'])
25+
return gulp.src(['public/events/2015*/**/', 'public/events/2016*/**/*', '!**/*.html'])
2626
.pipe(gulp.dest('dist/events'));
2727
});
2828

0 commit comments

Comments
 (0)