From 2945576cb77c209563da085649f2ece97cb81e17 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Wed, 8 Aug 2012 14:14:20 -0700 Subject: [PATCH] Include themes directory in bundle --- Rakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 3c5dc6cb0..4394e6a8d 100644 --- a/Rakefile +++ b/Rakefile @@ -71,13 +71,12 @@ task :"copy-files-to-bundle" => :"verify-prerequisites" do sh "coffee -c -o #{dest}/src/stdlib src/stdlib/require.coffee" cp "src/stdlib/onig-reg-exp-extension.js", "#{dest}/src/stdlib" unless ENV['LOAD_RESOURCES_FROM_DIR'] - %w(src static vendor spec benchmark).each do |dir| + %w(src static vendor spec benchmark bundles themes).each do |dir| rm_rf File.join(dest, dir) cp_r dir, File.join(dest, dir) end sh "coffee -c #{dest}/src #{dest}/vendor #{dest}/spec #{dest}/benchmark" - cp_r "bundles", "#{dest}/bundles" end end