From: Jelmer Vernooij Date: Sat, 2 Oct 2010 22:10:47 +0000 (+0200) Subject: land-remote: Run remote land command unbuffered. X-Git-Url: http://git.samba.org/abartlet/samba.git/?a=commitdiff_plain;h=d8e81a19de99c6784267d45843b8295b4e40fc7c;p=abartlet%2Fsamba.git%2F.git land-remote: Run remote land command unbuffered. --- diff --git a/script/land-remote.py b/script/land-remote.py index 75f1b41915d..975427ba7d8 100755 --- a/script/land-remote.py +++ b/script/land-remote.py @@ -50,7 +50,7 @@ print "Pushing local branch" args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:land"] print "$ " + " ".join(args) subprocess.check_call(args) -remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "python", "./script/land.py", "--repository=%s" % remote_repo] +remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "./script/land.py", "--repository=%s" % remote_repo] if opts.email: remote_args.append("--email=%s" % opts.email) if opts.always_email: diff --git a/script/land.py b/script/land.py index 632f844558d..28769486e21 100755 --- a/script/land.py +++ b/script/land.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python -u # run tests on all Samba subprojects and push to a git tree on success # Copyright Andrew Tridgell 2010 # Copyright Jelmer Vernooij 2010