From 0e8d6ecd3f24a175a1f67968c52cf36fd9d977b8 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 29 Mar 2012 15:34:25 -0700 Subject: [PATCH] Zip up Atom.app when rake package is called --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 3b4e27c6c..8b3d00a02 100644 --- a/Rakefile +++ b/Rakefile @@ -20,6 +20,7 @@ task :package => :build do FileUtils.rm_r "pkg" FileUtils.mkdir_p "pkg" FileUtils.cp_r path, "pkg/" + `cd pkg && zip -r atom.zip .` else exit(1) end