Fix invalid bitmask for release archives

This commit is contained in:
Fedor A. Fetisov 2018-08-07 20:35:11 +03:00
parent 8c2c8375a6
commit 896b4cbfb2

View File

@ -16,7 +16,7 @@ gulp.task('prepare-release', function() {
.pipe(tar('purge-history-plugin-' + version + '.tar'))
.pipe(gzip())
)
.pipe(chmod(0644))
.pipe(chmod(644))
.pipe(gulp.dest('release'));
});