diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-10-01 21:42:24 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-10-01 21:42:24 -0500 |
commit | d833d9fe7809468431f2044ac84b9fa85ff2472d (patch) | |
tree | b881cc7fbb790f6a687eed3db74e28574226f5c7 | |
parent | ff2009577d22dca8cdc31353f3c8cdb386eaafd1 (diff) | |
download | my_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-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |