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 Mar 30, 2017
1 parent 0269150 commit 84c94f4
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 @@ -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'));
});

Expand Down

0 comments on commit 84c94f4

Please # to comment.