From aace41032ee4a2484008bacbd2094f5192ea9610 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 28 May 2013 19:12:01 +0800 Subject: [PATCH] Rake clean should also clean unused files of master branch. So when people switch from master branch to atom-shell, they wouldn't have to clean those files themselves. --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rakefile b/Rakefile index 44fb5aede..7b99063ad 100644 --- a/Rakefile +++ b/Rakefile @@ -55,6 +55,9 @@ task :clean do `rm -rf /tmp/atom-cached-atom-shells` `rm -rf node_modules` `rm -rf atom-shell` + `rm -rf cef` + `rm -rf node` + `rm -rf prebuilt-cef` end desc "Run the specs"