From ffa68a1fe3585237f1a63fdffcd8d3d929e2b10e Mon Sep 17 00:00:00 2001 From: Frederic Hemberger Date: Mon, 17 Oct 2011 08:18:41 +0200 Subject: [PATCH] Fixes typo in :push task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 54f98d1..7d7f6d8 100644 --- a/Rakefile +++ b/Rakefile @@ -230,7 +230,7 @@ multitask :push do (Dir["#{deploy_dir}/*"]).each { |f| rm_rf(f) } Rake::Task[:copydot].invoke(public_dir, deploy_dir) puts "\n## copying #{public_dir} to #{deploy_dir}" - cp_r "#{public_dir}/*", deploy_dir + cp_r "#{public_dir}/.", deploy_dir cd "#{deploy_dir}" do system "git add ." system "git add -u"