aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-11-24 17:01:32 -0600
committerB Mathis <brandon@imathis.com>2009-11-24 17:01:32 -0600
commit3a6974267b88b6d7653c96c9bd403d3785a8ca30 (patch)
treeb6a3b54e3c8591109d4ffb06f4e00ad5ac11a69f /Rakefile
parent34e25551eaf1efcd60095b936ee851e980788d75 (diff)
downloadmy_new_personal_website-3a6974267b88b6d7653c96c9bd403d3785a8ca30.tar.xz
my_new_personal_website-3a6974267b88b6d7653c96c9bd403d3785a8ca30.zip
fixed source_branch variable name in github deploy script
Diffstat (limited to '')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index abed03ca..c1ff3fd0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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}/*")