From 793bb44bb2864c3e75492ca21075d0342e49c3d5 Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Thu, 31 Jan 2013 12:51:36 -0800 Subject: [PATCH] copy over the .atom template directory instead of individual files --- Rakefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Rakefile b/Rakefile index 2a14471ac..ad33f5a86 100644 --- a/Rakefile +++ b/Rakefile @@ -90,13 +90,7 @@ task "create-dot-atom" do end `rm -rf "#{DOT_ATOM_PATH}"` - `mkdir "#{DOT_ATOM_PATH}"` - - `cp "#{dot_atom_template_path}/user.coffee" "#{DOT_ATOM_PATH}"` - `cp "#{dot_atom_template_path}/user.css" "#{DOT_ATOM_PATH}"` - `cp -r "#{dot_atom_template_path}/packages" "#{DOT_ATOM_PATH}"` - `cp -r "#{ATOM_SRC_PATH}/themes" "#{DOT_ATOM_PATH}"` - `cp "#{ATOM_SRC_PATH}/vendor/themes/IR_Black.tmTheme" "#{DOT_ATOM_PATH}/themes"` + `cp -r #{dot_atom_template_path} #{DOT_ATOM_PATH}` end desc "Clone default bundles into vendor/bundles directory"