From 08767f504f63103242737bfa31fcfdb3ad74f428 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Sun, 29 Oct 2023 14:27:21 -0600 Subject: [PATCH] use chmod to set permissions of generated index.html file --- app/templates/gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/templates/gulpfile.js b/app/templates/gulpfile.js index d94c422..a76b99a 100644 --- a/app/templates/gulpfile.js +++ b/app/templates/gulpfile.js @@ -66,6 +66,7 @@ gulp.task('html', gulp.series('clean:html', function _html() { return gulp.src('src/index.html') <% } -%> .pipe(rename('index.html')) + .pipe(chmod(0o644)) .pipe(gulp.dest('public')) .pipe(connect.reload()); }));