From 9a4f5ef15bf8cefc90477a435fd3e7db0164d5b0 Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Tue, 7 Aug 2018 20:05:57 +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 093f04a..9e4f991 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -28,7 +28,7 @@ gulp.task('prepare-release', ['bower'], function() { .pipe(tar('open-street-map-plugin-' + version + '.tar')) .pipe(gzip()) ) - .pipe(chmod(0644)) + .pipe(chmod(644)) .pipe(gulp.dest('release')); });