Remove atom-shell during partial-clean task instead of clean task

This commit is contained in:
Kevin Sawicki & Nathan Sobo 2013-07-03 17:52:22 -07:00
parent 6d70bf9106
commit 0448ba5ceb

View File

@ -8,9 +8,9 @@ module.exports = (grunt) ->
rm '/tmp/atom-coffee-cache'
rm '/tmp/atom-cached-atom-shells'
rm 'node'
rm 'atom-shell'
grunt.registerTask 'clean', 'Delete all the build files', ->
rm 'node_modules'
rm 'atom-shell'
rm path.join(process.env.HOME, '.atom', '.node-gyp')
grunt.task.run('partial-clean')