mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-28 19:31:14 +08:00
38 lines
934 B
JavaScript
38 lines
934 B
JavaScript
/* eslint prefer-template: 0 */
|
|
/* eslint global-require: 0 */
|
|
/* eslint quote-props: 0 */
|
|
const path = require('path');
|
|
|
|
module.exports = grunt => {
|
|
const { spawn } = grunt.config('taskHelpers');
|
|
|
|
grunt.registerTask('create-mac-zip', 'Zip up Mailspring', function pack() {
|
|
const done = this.async();
|
|
const zipPath = path.join(grunt.config('outputDir'), 'Mailspring.zip');
|
|
|
|
if (grunt.file.exists(zipPath)) {
|
|
grunt.file.delete(zipPath, { force: true });
|
|
}
|
|
|
|
const orig = process.cwd();
|
|
process.chdir(path.join(grunt.config('outputDir'), 'Mailspring-darwin-x64'));
|
|
|
|
spawn(
|
|
{
|
|
cmd: 'zip',
|
|
args: ['-9', '-y', '-r', '-9', '-X', zipPath, 'Mailspring.app'],
|
|
},
|
|
error => {
|
|
process.chdir(orig);
|
|
|
|
if (error) {
|
|
done(error);
|
|
return;
|
|
}
|
|
|
|
grunt.log.writeln(`>> Created ${zipPath}`);
|
|
done(null);
|
|
}
|
|
);
|
|
});
|
|
};
|