Skip to content

Commit

Permalink
Fix archive file names and compression modes
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed May 28, 2019
1 parent 5e4a294 commit 34f9786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = function (grunt) {
compress: {
pckg: {
options: {
mode: os === 'win32' ? 'zip' : 'tgz',
mode: os === 'linux' ? 'tgz' : 'zip',
archive: 'dist/<%= pkg.name %>-<%= pkg.version %>' + (node ? ('_node' + node) : '') + (os ? ('_' + os) : '') + (platform ? ('_' + platform) : '') + (os === 'linux' ? '.tgz' : '.zip')
},
files: [
Expand Down

0 comments on commit 34f9786

Please sign in to comment.