diff options
author | B Mathis <brandon@imathis.com> | 2009-11-24 17:19:00 -0600 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2009-11-24 17:19:00 -0600 |
commit | 65ab7abbfa79ffe14145c995dfb81dc6b2b11856 (patch) | |
tree | 1322c0bdd8104f015dc438de2c3834f300753150 /Rakefile | |
parent | 1e796da9dbdf8b4f001928bc15a09d1d8dead8fe (diff) | |
download | my_new_personal_website-65ab7abbfa79ffe14145c995dfb81dc6b2b11856.tar.xz my_new_personal_website-65ab7abbfa79ffe14145c995dfb81dc6b2b11856.zip |
fixed deploy var in rake task
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ multitask :deploy_github => [:default, :clean_debug] do repo.status.deleted.each {|f, s| repo.remove(f)} message = ENV["MESSAGE"] || "Site updated at #{Time.now.utc}" repo.commit(message) - repo.push("#{deploy_branch}") + repo.push("origin #{deploy_branch}") repo.branch("#{source_branch}").checkout end |