From ec91c370d5a07ee64f9ab180bf71b1d49aa14c94 Mon Sep 17 00:00:00 2001 From: Tom Miller Date: Mon, 19 Sep 2011 22:44:09 -0500 Subject: [PATCH] Removing glob because globbing does not pick up dotfiles. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index df96f92..4a1e64e 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 ."