Skip to content

Commit

Permalink
Merge pull request jekyll#1480 from mojombo/ignore-_site-in-deploy
Browse files Browse the repository at this point in the history
Ignore _site in jekyllrb.com deploy.
  • Loading branch information
parkr committed Aug 30, 2013
2 parents 39d8f40 + da1780f commit a2d67c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ namespace :site do
# Copy to gh-pages dir.
puts "Copying site to gh-pages branch..."
Dir.glob("site/*") do |path|
next if path == "_site"
next if path.include? "_site"
sh "cp -R #{path} gh-pages/"
end

Expand Down

0 comments on commit a2d67c5

Please sign in to comment.