summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-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: