pulsar/build/tasks/create-installer.coffee

42 lines
1.5 KiB
CoffeeScript
Raw Normal View History

fs = require 'fs'
path = require 'path'
2014-09-17 02:41:57 +04:00
_ = require 'underscore-plus'
module.exports = (grunt) ->
{spawn, rm} = require('./task-helpers')(grunt)
grunt.registerTask 'create-installer', 'Create the Windows installer', ->
2014-09-23 04:07:00 +04:00
return unless if process.platform is 'win32'
done = @async()
buildDir = grunt.config.get('atom.buildDir')
atomDir = path.join(buildDir, 'Atom')
packageInfo = JSON.parse(fs.readFileSync(path.join(atomDir, 'resources', 'app', 'package.json'), {encoding: 'utf8'}))
inputTemplate = grunt.file.read(path.join('build', 'windows', 'atom.nuspec.erb'))
2014-09-17 03:00:57 +04:00
## NB: Build server has some sort of stamp on the version number
packageInfo.version = packageInfo.version.replace(/-.*$/, '')
targetNuspecPath = path.join(buildDir, 'atom.nuspec')
grunt.file.write(targetNuspecPath, _.template(inputTemplate, packageInfo))
cmd = 'build/windows/nuget.exe'
args = ['pack', targetNuspecPath, '-BasePath', atomDir, '-OutputDirectory', buildDir]
spawn {cmd, args}, (error, result, code) ->
2014-09-23 04:07:00 +04:00
return done(error) if error?
pkgs = pkg for pkg in fs.readdirSync(buildDir) when pkg.match /.nupkg$/i
2014-09-22 21:47:27 +04:00
releasesDir = path.join(buildDir, 'Releases')
## NB: Gonna clear Releases for now, in the future we need to pull down
## the existing version
rm(releasesDir)
2014-09-22 21:47:27 +04:00
cmd = 'build/windows/update.com'
args = ['--releasify', path.join(buildDir, pkgs), '-r', releasesDir]
spawn {cmd, args}, (error, result, code) -> done(error)