remove executable permission from files that shouldn't have it (#13873)

This commit is contained in:
Mickey Rose
2021-10-23 14:18:30 +02:00
committed by GitHub
parent cfe6739dc0
commit b5907ef967
153 changed files with 1 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ function generateHelpers(generator, dest, filename, message) {
callback(null, file);
})
)
.pipe(gulp.dest(dest));
.pipe(gulp.dest(dest, { mode: 0o644 }));
return finish(stream);
}