diff options
author | B Mathis <brandon@imathis.com> | 2009-11-24 17:01:32 -0600 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2009-11-24 17:01:32 -0600 |
commit | 3a6974267b88b6d7653c96c9bd403d3785a8ca30 (patch) | |
tree | b6a3b54e3c8591109d4ffb06f4e00ad5ac11a69f /Rakefile | |
parent | 34e25551eaf1efcd60095b936ee851e980788d75 (diff) | |
download | my_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-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}/*") |