Skip to content

Commit

Permalink
use chmod to set permissions of generated index.html file
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Oct 29, 2023
1 parent b684405 commit 08767f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}));
Expand Down

0 comments on commit 08767f5

Please sign in to comment.