diff options
Diffstat (limited to 'script')
-rwxr-xr-x | script/land-remote.py | 2 | ||||
-rwxr-xr-x | script/land.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/script/land-remote.py b/script/land-remote.py index 75f1b41915..975427ba7d 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 632f844558..28769486e2 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 |