From 670da2c9c3557097eedabe2ca52d4614d0207541 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 9 Oct 2012 18:16:33 -0700 Subject: [PATCH] Don't link bundles folder --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index accf15ec2..e85345c48 100644 --- a/Rakefile +++ b/Rakefile @@ -65,7 +65,7 @@ task "create-dot-atom" do `cp "#{dot_atom_template_path}/atom.coffee" "#{DOT_ATOM_PATH}"` for path in Dir.entries(dot_atom_template_path) - next if ["..", ".", "atom.coffee"].include? path + next if ["..", ".", "atom.coffee", "bundles"].include? path `ln -s "#{dot_atom_template_path}/#{path}" "#{DOT_ATOM_PATH}"` end end