mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Fix permissions of built files
gulp-chmod expects values in octal, while the previous values were in decimal. This resulted in incorrect permissions on build output files, which caused the next build step to fail.
This commit is contained in:
parent
509f81d2c8
commit
ed0a7d4a26
1 changed files with 1 additions and 1 deletions
|
|
@ -464,7 +464,7 @@ gulp.task('rainloop:copy', ['default'], function() {
|
|||
fs.mkdirSync(dist + 'rainloop/v/' + versionFull, '0777', true);
|
||||
|
||||
return gulp.src('rainloop/v/' + cfg.devVersion + '/**/*', {base: 'rainloop/v/' + cfg.devVersion})
|
||||
.pipe(chmod(644, 755))
|
||||
.pipe(chmod(0o644, 0o755))
|
||||
.pipe(gulp.dest(dist + 'rainloop/v/' + versionFull));
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue