From a354d9f8804c33dc55a28e9bfec079864429a103 Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Wed, 3 Sep 2014 18:21:36 -0700 Subject: [PATCH] Add create-installer to default tasks --- build/Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 876964a20..253c92c73 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -225,9 +225,9 @@ module.exports = (grunt) -> grunt.registerTask('compile', ['coffee', 'prebuild-less', 'cson', 'peg']) grunt.registerTask('lint', ['coffeelint', 'csslint', 'lesslint']) grunt.registerTask('test', ['shell:kill-atom', 'run-specs']) - grunt.registerTask('ci', ['output-disk-space', 'download-atom-shell', 'build', 'dump-symbols', 'set-version', 'check-licenses', 'lint', 'test', 'codesign', 'publish-build']) + grunt.registerTask('ci', ['output-disk-space', 'download-atom-shell', 'build', 'dump-symbols', 'set-version', 'check-licenses', 'lint', 'test', 'create-installer', 'codesign', 'publish-build']) grunt.registerTask('docs', ['markdown:guides', 'build-docs']) - defaultTasks = ['download-atom-shell', 'build', 'set-version'] + defaultTasks = ['download-atom-shell', 'build', 'set-version', 'create-installer'] defaultTasks.push 'install' unless process.platform is 'linux' grunt.registerTask('default', defaultTasks)