Browse code

fixed deploy var in rake task

B Mathis authored on 24/11/2009 at 23:19:00
Showing 1 changed files
... ...
@@ -110,7 +110,7 @@ multitask :deploy_github => [:default, :clean_debug] do
110 110
   repo.status.deleted.each {|f, s| repo.remove(f)}
111 111
   message = ENV["MESSAGE"] || "Site updated at #{Time.now.utc}"
112 112
   repo.commit(message)
113
-  repo.push("#{deploy_branch}")
113
+  repo.push("origin #{deploy_branch}")
114 114
   repo.branch("#{source_branch}").checkout
115 115
 end
116 116