rakelib/workflow.rake
changeset 88 112075e99cef
parent 86 f2a7a4378c22
child 105 983a637074e6
--- a/rakelib/workflow.rake	Sun Nov 27 22:57:33 2016 +0000
+++ b/rakelib/workflow.rake	Sun Dec 04 22:21:22 2016 +0000
@@ -50,13 +50,13 @@
 
   desc "Display changes to be pushed to upstream repositores (use it to review what workflow:push-upstream would do)"
   task :'out-upstream', :user, :pass do | t, args |
-    push('default', args[:user], args[:pass], true, false)
+    push('upstream', args[:user], args[:pass], true, false)
   end
   task :'out-upstream' => :'setup'
 
   desc "Push currently checked out revisions to upstream repositories (to be called after all tests pass on all configurations)"
   task :'push-upstream', :user, :pass do | t, args |
-    push('default', args[:user], args[:pass], false, false)
+    push('upstream', args[:user], args[:pass], false, false)
   end
   task :'push-upstream' => :'setup'