From b333cf2734b45f6ac27d223e0035807fda43aecf Mon Sep 17 00:00:00 2001 From: Will Farrington Date: Wed, 6 Feb 2013 15:10:25 -0800 Subject: [PATCH] rake clean should kill the compiled scripts directory --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index e0dd5abd1..ca95f6400 100644 --- a/Rakefile +++ b/Rakefile @@ -109,6 +109,7 @@ task :clean do output = `xcodebuild clean` `rm -rf #{application_path()}` `rm -rf #{BUILD_DIR}` + `rm -rf /tmp/atom-compiled-scripts` end desc "Run Atom"