summaryrefslogtreecommitdiff
path: root/script/land-remote.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-01 21:35:35 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-02 13:14:51 +0200
commitff5fdb65f54f2e2efd865112f579989e96d848cf (patch)
tree9bc8b0558a76fb567c36f158c863fd189371418e /script/land-remote.py
parent8ce24a9187f7f93cb3557696034c94fc8be161f1 (diff)
downloadsamba-ff5fdb65f54f2e2efd865112f579989e96d848cf.tar.gz
samba-ff5fdb65f54f2e2efd865112f579989e96d848cf.tar.bz2
samba-ff5fdb65f54f2e2efd865112f579989e96d848cf.zip
land-remote: Use --repository option.
Diffstat (limited to 'script/land-remote.py')
-rwxr-xr-xscript/land-remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/land-remote.py b/script/land-remote.py
index eeedcadc1e..705b408bd9 100755
--- a/script/land-remote.py
+++ b/script/land-remote.py
@@ -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: