Subject: [ostree] osbuild: Don't use linux-user-chroot for git submodules commit 9939f1861d0a2b0fd6b5b2f91f56ac9570613b1f Author: Colin Walters <walters@xxxxxxxxxx> Date: Wed Feb 22 11:51:18 2012 -0500 osbuild: Don't use linux-user-chroot for git submodules On the ostree.gnome.org build server, LDAP is used for username lookups, and git aborts if it can't look up the user. src/ostbuild/pyostbuild/vcs.py | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) --- diff --git a/src/ostbuild/pyostbuild/vcs.py b/src/ostbuild/pyostbuild/vcs.py index adf947a..cbb6b0e 100755 --- a/src/ostbuild/pyostbuild/vcs.py +++ b/src/ostbuild/pyostbuild/vcs.py @@ -63,9 +63,7 @@ def get_vcs_checkout(mirrordir, keytype, uri, dest, branch, overwrite=True): run_sync(['git', 'submodule', 'init'], cwd=tmp_dest) have_submodules = _fixup_submodule_references(mirrordir, tmp_dest) if have_submodules: - run_sync(['linux-user-chroot', - '--unshare-net', '--chdir', tmp_dest, '/', - '/usr/bin/git', 'submodule', 'update']) + run_sync(['git', 'submodule', 'update']) os.rename(tmp_dest, dest) return dest _______________________________________________ commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. |