From 5b2b0c508bec91b3507d53544eec19c9c43ebc27 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Wed, 21 Sep 2011 18:44:21 -0500 Subject: [PATCH] fixed issue where public was being copied into _deploy --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 4a1e64e..df96f92 100644 --- a/Rakefile +++ b/Rakefile @@ -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 ."