Skip to content

Commit

Permalink
Fix invalid bitmask for release archives
Browse files Browse the repository at this point in the history
  • Loading branch information
faf committed Aug 7, 2018
1 parent c9a742f commit 9a4f5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
});

Expand Down

0 comments on commit 9a4f5ef

Please sign in to comment.