1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

land-remote: Use --repository option.

This commit is contained in:
Jelmer Vernooij 2010-10-01 21:35:35 +02:00
parent 8ce24a9187
commit ff5fdb65f5

View File

@ -47,7 +47,7 @@ print "Pushing local branch"
args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:HEAD"]
print "$ " + " ".join(args)
subprocess.check_call(args)
remote_args = ["cd", remote_repo, "&&", "python", "./script/autobuild.py"]
remote_args = ["python", "%s/script/land.py" % remote_repo, "--repository=%s" % remote_repo]
if opts.email:
remote_args.append("--email=%s" % opts.email)
if opts.always_email: