[tor-commits] [githax/master] Fix my make-tor-next script to put stuff in the new real tor-next repo

nickm at torproject.org nickm at torproject.org
Mon Jun 11 23:21:44 UTC 2012


commit 973434cfdd24e4d9934f64b43a5bcbf4b918dacc
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Jun 11 19:17:41 2012 -0400

    Fix my make-tor-next script to put stuff in the new real tor-next repo
---
 scripts/make-tor-next |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/make-tor-next b/scripts/make-tor-next
index 0b45e34..86652a4 100755
--- a/scripts/make-tor-next
+++ b/scripts/make-tor-next
@@ -25,7 +25,7 @@ GRANDFATHERED_REPOS = set("""
 # What branch do we base tor-next on?
 BASE_BRANCH = "origin/master"
 # To which repository do we push the pu branch and the tor-next branch?
-TARGET_REPO = "nickm"
+TARGET_REPO = "tor-next"
 
 logging.basicConfig(level="INFO",
                     format=">>>> %(levelname)s: %(message)s")
@@ -143,8 +143,8 @@ except CalledProcessError:
 logging.info("Build seemed to work. Pushing it!")
 
 
-subprocess.check_call(["git", "push", "nickm", temp_branch_name])
-subprocess.check_call(["git", "push", "nickm", "+%s:tor-next"%(temp_branch_name)])
+subprocess.check_call(["git", "push", TARGET_REPO, temp_branch_name])
+subprocess.check_call(["git", "push", TARGET_REPO, "+%s:tor-next"%(temp_branch_name)])
 logging.info("Pushed tor-next. It's a great big beautiful tomorrow.")
 
 



More information about the tor-commits mailing list