Skip to content

Commit a67e69c

Browse files
committed
Fix uploading for AWS
Apparently I forgot to return the source, whoops.
1 parent d16c494 commit a67e69c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generators/gulp/templates/gulpfile.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ gulp.task('deploy', () => {
203203
'Cache-Control': 'max-axe=315360000, no-transform, public'
204204
};
205205

206-
gulp.src('dist/**/*')
206+
return gulp.src('dist/**/*')
207207
.pipe($.awspublish.gzip())
208208
.pipe(parallelize(publisher.publish(headers), 30))
209209
.pipe(publisher.cache())

0 commit comments

Comments
 (0)