fixed issue where public was being copied into _deploy

This commit is contained in:
Brandon Mathis 2011-09-21 18:44:21 -05:00
parent 27c736bff5
commit 5b2b0c508b
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ desc "deploy public directory to github pages"
multitask :push do
puts "## Deploying branch to Github Pages "
(Dir["#{deploy_dir}/*"]).each { |f| rm_rf(f) }
system "cp -R #{public_dir}/ #{deploy_dir}"
system "cp -R #{public_dir}/* #{deploy_dir}"
puts "\n## copying #{public_dir} to #{deploy_dir}"
cd "#{deploy_dir}" do
system "git add ."