diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 1fbdf591e..175a5ecae 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -23,7 +23,7 @@ module.exports = (grunt) -> grunt.loadNpmTasks('grunt-contrib-coffee') grunt.loadNpmTasks('grunt-contrib-less') grunt.loadNpmTasks('grunt-shell') - grunt.loadNpmTasks('grunt-download-atom-shell') + grunt.loadNpmTasks('grunt-download-electron') grunt.loadNpmTasks('grunt-electron-installer') grunt.loadNpmTasks('grunt-peg') grunt.loadTasks('tasks') @@ -254,7 +254,7 @@ module.exports = (grunt) -> grunt.registerTask('lint', ['standard', 'coffeelint', 'csslint', 'lesslint']) grunt.registerTask('test', ['shell:kill-atom', 'run-specs']) - ciTasks = ['output-disk-space', 'download-atom-shell', 'download-atom-shell-chromedriver', 'build'] + ciTasks = ['output-disk-space', 'download-electron', 'download-electron-chromedriver', 'build'] ciTasks.push('dump-symbols') if process.platform isnt 'win32' ciTasks.push('set-version', 'check-licenses', 'lint', 'generate-asar') ciTasks.push('mkdeb') if process.platform is 'linux' @@ -266,6 +266,6 @@ module.exports = (grunt) -> ciTasks.push('publish-build') unless process.env.TRAVIS grunt.registerTask('ci', ciTasks) - defaultTasks = ['download-atom-shell', 'download-atom-shell-chromedriver', 'build', 'set-version', 'generate-asar'] + defaultTasks = ['download-electron', 'download-electron-chromedriver', 'build', 'set-version', 'generate-asar'] defaultTasks.push 'install' unless process.platform is 'linux' grunt.registerTask('default', defaultTasks)