From 0686efc429fc6b152a3e96c49d1fd2d8a6dabbb1 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 6 Nov 2013 22:48:50 +0800 Subject: [PATCH] Revert "Only run set-development-version on mac" This reverts commit 9a4db9d95db8b179397ec3b77ad76b03d1fe1545. It's supported on Windows now. --- Gruntfile.coffee | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index a63d37e44..ae0388930 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -188,8 +188,4 @@ module.exports = (grunt) -> grunt.registerTask('ci', ['update-atom-shell', 'build', 'set-development-version', 'lint', 'test']) grunt.registerTask('deploy', ['partial-clean', 'update-atom-shell', 'build', 'codesign']) grunt.registerTask('docs', ['markdown:guides', 'build-docs']) - - defaultTasks = ['update-atom-shell', 'build'] - defaultTasks.push('set-development-version') if process.platform is 'darwin' - defaultTasks.push('install') - grunt.registerTask('default', defaultTasks) + grunt.registerTask('default', ['update-atom-shell', 'build', 'set-development-version', 'install'])