From 7f2746ed6193f492374b8043d90e4d754e9b9d63 Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Wed, 8 Feb 2017 10:44:21 +0300 Subject: [PATCH] Fix permissions for release archives (fixes #5) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d126eea..974c553 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,7 +66,7 @@ gulp.task('prepare-release', function() { .pipe(tar('slack-' + version + '.tar')) .pipe(gzip()) ) - .pipe(chmod(0644)) + .pipe(chmod(644)) .pipe(gulp.dest('release')); });