aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-11-24 17:19:00 -0600
committerB Mathis <brandon@imathis.com>2009-11-24 17:19:00 -0600
commit65ab7abbfa79ffe14145c995dfb81dc6b2b11856 (patch)
tree1322c0bdd8104f015dc438de2c3834f300753150 /Rakefile
parent1e796da9dbdf8b4f001928bc15a09d1d8dead8fe (diff)
downloadmy_new_personal_website-65ab7abbfa79ffe14145c995dfb81dc6b2b11856.tar.xz
my_new_personal_website-65ab7abbfa79ffe14145c995dfb81dc6b2b11856.zip
fixed deploy var in rake task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 21fc3d2c..b05b5d94 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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