From d833d9fe7809468431f2044ac84b9fa85ff2472d Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Sat, 1 Oct 2011 21:42:24 -0500 Subject: [PATCH] wildcards broke rake update_source. fixes that --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 0358009..1336669 100644 --- a/Rakefile +++ b/Rakefile @@ -190,7 +190,7 @@ task :update_source, :theme do |t, args| cp_r "#{source_dir}.old/_includes/custom/.", "#{source_dir}/_includes/custom/", :remove_destination=>true cp "#{source_dir}.old/favicon.png", source_dir mv "#{source_dir}/index.html", "#{blog_index_dir}", :force=>true if blog_index_dir != source_dir - cp "#{source_dir}.old/index.*", source_dir if blog_index_dir != source_dir + cp "#{source_dir}.old/index.html", source_dir if blog_index_dir != source_dir puts "## Updated #{source_dir} ##" end