Browse code

wildcards broke rake update_source. fixes that

Brandon Mathis authored on 02/10/2011 at 02:42:24
Showing 1 changed files
... ...
@@ -190,7 +190,7 @@ task :update_source, :theme do |t, args|
190 190
   cp_r "#{source_dir}.old/_includes/custom/.", "#{source_dir}/_includes/custom/", :remove_destination=>true
191 191
   cp "#{source_dir}.old/favicon.png", source_dir
192 192
   mv "#{source_dir}/index.html", "#{blog_index_dir}", :force=>true if blog_index_dir != source_dir
193
-  cp "#{source_dir}.old/index.*", source_dir if blog_index_dir != source_dir
193
+  cp "#{source_dir}.old/index.html", source_dir if blog_index_dir != source_dir
194 194
   puts "## Updated #{source_dir} ##"
195 195
 end
196 196