Revert "Only run set-development-version on mac"

This reverts commit 9a4db9d95d.

It's supported on Windows now.
This commit is contained in:
Cheng Zhao
2013-11-06 22:48:50 +08:00
parent 2058d5a431
commit 0686efc429

View File

@@ -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'])