fixed source_branch variable name in github deploy script

This commit is contained in:
B Mathis 2009-11-24 17:01:32 -06:00
parent 34e25551ea
commit 3a6974267b
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ desc "generate and deploy website to github user pages"
multitask :deploy_github => [:default, :clean_debug] do
require 'git'
repo = Git.open('.')
repo.branch("#{github_pages_branch}").checkout
repo.branch("#{deploy_branch}").checkout
(Dir["*"] - ["#{site}/*"]).each { |f| rm_rf(f) }
Dir["#{site}/*"].each {|f| mv(f, ".")}
rm_rf("#{site}/*")