From 8ca0285646ee052a1a8ed37bb60a5c7eaea548e9 Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Tue, 7 Aug 2018 20:34:44 +0300 Subject: [PATCH] Fix invalid bitmask for release archives --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1ce2a20..30fa835 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,7 +16,7 @@ gulp.task('prepare-release', function() { .pipe(tar('real-ban-plugin-' + version + '.tar')) .pipe(gzip()) ) - .pipe(chmod(0644)) + .pipe(chmod(644)) .pipe(gulp.dest('release')); });