commit 5afe8168ae2af0178147a3e5dbd4f7e2617cba41 Author: ilv ilv@users.noreply.github.com Date: Tue Feb 10 16:30:52 2015 -0300
Uncommented system calls for git --- upload/bundles2github.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/upload/bundles2github.py b/upload/bundles2github.py index 35c7324..6468320 100644 --- a/upload/bundles2github.py +++ b/upload/bundles2github.py @@ -111,10 +111,10 @@ if __name__ == '__main__': # steps: 1) create dir for the new version, copy the latest Tor Browser # files there, add the files via git, make a commit for the new version # and push the changes (easier with system calls) - # os.system('mkdir %s' % version) - # os.system('cp latest/* %s' % version) - # os.system('git add %s;git commit -m "%s"' % (version, version)) - # os.system('cd %s;git push %s %s' % (version, remote, branch)) + os.system('mkdir %s' % version) + os.system('cp latest/* %s' % version) + os.system('git add %s;git commit -m "%s"' % (version, version)) + os.system('cd %s;git push %s %s' % (version, remote, branch))
gh = github.GitHub(gh_token, None) repocontent = gh.repo(
tor-commits@lists.torproject.org