mirror of
https://github.com/atom/atom.git
synced 2026-02-05 20:25:04 -05:00
42 lines
1.5 KiB
CoffeeScript
42 lines
1.5 KiB
CoffeeScript
fs = require 'fs'
|
|
path = require 'path'
|
|
_ = require 'underscore-plus'
|
|
|
|
module.exports = (grunt) ->
|
|
{spawn, rm} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'create-installer', 'Create the Windows installer', ->
|
|
return unless process.platform is 'win32'
|
|
|
|
done = @async()
|
|
|
|
buildDir = grunt.config.get('atom.buildDir')
|
|
atomDir = path.join(buildDir, 'Atom')
|
|
|
|
packageInfo = grunt.file.readJSON(path.join(atomDir, 'resources', 'app', 'package.json'))
|
|
inputTemplate = grunt.file.read(path.join('build', 'windows', 'atom.nuspec.erb'))
|
|
|
|
# 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) ->
|
|
return done(error) if error?
|
|
|
|
pkgs = pkg for pkg in fs.readdirSync(buildDir) when path.extname(pkg) is '.nupkg'
|
|
|
|
releasesDir = path.join(buildDir, 'Releases')
|
|
|
|
# NB: Gonna clear Releases for now, in the future we need to pull down
|
|
# the existing version
|
|
rm(releasesDir)
|
|
|
|
cmd = 'build/windows/update.com'
|
|
args = ['--releasify', path.join(buildDir, pkgs), '-r', releasesDir, '-g', 'build/windows/install-spinner.gif']
|
|
spawn {cmd, args}, (error, result, code) -> done(error)
|