diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-01 19:24:20 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-02 13:14:51 +0200 |
commit | 56ad550a92c9c0c65da52861e43ed7595131d0ef (patch) | |
tree | 918440366e345e6af477224ffa8358a0fe6116b0 /script/land-remote.py | |
parent | ff5fdb65f54f2e2efd865112f579989e96d848cf (diff) | |
download | samba-56ad550a92c9c0c65da52861e43ed7595131d0ef.tar.gz samba-56ad550a92c9c0c65da52861e43ed7595131d0ef.tar.xz samba-56ad550a92c9c0c65da52861e43ed7595131d0ef.zip |
land-remote: Checkout repository first.
Diffstat (limited to 'script/land-remote.py')
-rwxr-xr-x | script/land-remote.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/script/land-remote.py b/script/land-remote.py index 705b408bd90..14f32357f9a 100755 --- a/script/land-remote.py +++ b/script/land-remote.py @@ -36,6 +36,7 @@ if not opts.remote_repo: sys.exit(1) remote_repo = stdout.rstrip() print "Remote tempdir: %s" % remote_repo + # Bootstrap, git.samba.org is close to sn-devel remote_args = ["git", "clone", "git://git.samba.org/samba.git", remote_repo] #remote_args = ["git", "init", remote_repo] print "%s$ %s" % (opts.host, " ".join(remote_args)) @@ -44,10 +45,10 @@ else: remote_repo = opts.remote_repo print "Pushing local branch" -args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:HEAD"] +args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:land"] print "$ " + " ".join(args) subprocess.check_call(args) -remote_args = ["python", "%s/script/land.py" % remote_repo, "--repository=%s" % remote_repo] +remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "python", "./script/land.py", "--repository=%s" % remote_repo] if opts.email: remote_args.append("--email=%s" % opts.email) if opts.always_email: |