aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-10-01 21:42:24 -0500
committerBrandon Mathis <brandon@imathis.com>2011-10-01 21:42:24 -0500
commitd833d9fe7809468431f2044ac84b9fa85ff2472d (patch)
treeb881cc7fbb790f6a687eed3db74e28574226f5c7 /Rakefile
parentff2009577d22dca8cdc31353f3c8cdb386eaafd1 (diff)
downloadmy_new_personal_website-d833d9fe7809468431f2044ac84b9fa85ff2472d.tar.xz
my_new_personal_website-d833d9fe7809468431f2044ac84b9fa85ff2472d.zip
wildcards broke rake update_source. fixes that
Diffstat (limited to '')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 03580090..1336669f 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