Skip to content

Commit

Permalink
Fixed issue where dotfiles were not being copied to _deploy for githu…
Browse files Browse the repository at this point in the history
…b pages deployments
  • Loading branch information
imathis committed Sep 21, 2011
1 parent 5b2b0c5 commit a5d55fe
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,18 @@ task :copydot do
end
end

desc "copy dot files for Github Pages deployment"
task :copydot_deploy do
exclusions = [".", "..", ".DS_Store"]
Dir["#{public_dir}/**/.*"].each do |file|
if !File.directory?(file) && !exclusions.include?(File.basename(file))
cp(file, file.gsub(/#{public_dir}/, "#{deploy_dir}"));
end
end
puts "\n## copying #{public_dir} to #{deploy_dir}"
end


desc "Deploy website via rsync"
task :rsync do
puts "## Deploying website via Rsync"
Expand All @@ -225,8 +237,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}"
puts "\n## copying #{public_dir} to #{deploy_dir}"
Rake::Task[:copydot_deploy].execute
cd "#{deploy_dir}" do
system "git add ."
system "git add -u"
Expand Down

0 comments on commit a5d55fe

Please sign in to comment.