From 3c193a2328063f7f3b6aeda00e8f862ea798a2c0 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Mon, 2 Apr 2012 09:08:04 -0700 Subject: [PATCH] Force removal of pkg dir --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 6b5ad951c..f84042246 100644 --- a/Rakefile +++ b/Rakefile @@ -17,7 +17,7 @@ end desc "Create the Atom.app for distribution" task :package => :build do if path = application_path() - FileUtils.rm_r "pkg" + FileUtils.rm_rf "pkg" FileUtils.mkdir_p "pkg" FileUtils.cp_r path, "pkg/" `cd pkg && zip -r atom.zip .`