From 0448ba5ceb866d6a9ea73e448e1897e256617ebe Mon Sep 17 00:00:00 2001 From: Kevin Sawicki & Nathan Sobo Date: Wed, 3 Jul 2013 17:52:22 -0700 Subject: [PATCH] Remove atom-shell during partial-clean task instead of clean task --- tasks/clean-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/clean-task.coffee b/tasks/clean-task.coffee index ee705a6b5..256c938ec 100644 --- a/tasks/clean-task.coffee +++ b/tasks/clean-task.coffee @@ -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')