diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2013-04-22 13:45:41 -0600 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2013-04-22 13:45:41 -0600 |
commit | a3ce71e3812670cb7332764f743ca20e0bd2b57f (patch) | |
tree | 7f51f66465fece42297504b489f23397cc622017 /inttest | |
parent | 6bbd79044d9192edcc16aec8cbabc755ae7a2c91 (diff) |
Adding user/email on created repos for travis CI
Diffstat (limited to 'inttest')
-rw-r--r-- | inttest/tdeps1/tdeps1_rt.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inttest/tdeps1/tdeps1_rt.erl b/inttest/tdeps1/tdeps1_rt.erl index de8e721..3de1a2b 100644 --- a/inttest/tdeps1/tdeps1_rt.erl +++ b/inttest/tdeps1/tdeps1_rt.erl @@ -35,6 +35,8 @@ run(_Dir) -> %% properly GitCmds = ["git init", "git add -A", + "git config user.email 'tdeps@example.com'", + "git config user.name 'tdeps'", "git commit -a -m 'Initial Commit'"], apply_cmds(GitCmds, [{dir, "repo/b"}]), apply_cmds(GitCmds, [{dir, "repo/c"}]), |