From 84c94f427a55b2cf466de59b0f82d99921069479 Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Thu, 30 Mar 2017 16:00:47 +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 59642e9..add1dd3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,7 +16,7 @@ gulp.task('prepare-release', function() { .pipe(tar('operator-status-plugin-' + version + '.tar')) .pipe(gzip()) ) - .pipe(chmod(0644)) + .pipe(chmod(644)) .pipe(gulp.dest('release')); });