summaryrefslogtreecommitdiff
path: root/000.yarn
diff options
context:
space:
mode:
Diffstat (limited to '000.yarn')
-rw-r--r--000.yarn3
1 files changed, 2 insertions, 1 deletions
diff --git a/000.yarn b/000.yarn
index a9f5030..c951972 100644
--- a/000.yarn
+++ b/000.yarn
@@ -267,7 +267,8 @@ groups, and respositories.
user = 'admin'
url = helper.repo_ssh_url(repo)
dirname = helper.local_checkout_dirname(user, repo)
- helper.git_as(None, ['clone', url, dirname])
+ exit, out, err = helper.git_as(None, ['clone', url, dirname])
+ helper.assertEqual(exit, 0)
env = dict(os.environ)
env['GIT_SSH_COMMAND'] = helper.env_ssh_command(None)
cliapp.runcmd(['git', 'config', 'user.email', user], cwd=dirname, env=env)