Skip to content

Commit 0ba81a4

Browse files
committed
fix(build): fixes the travisCI build config
TravisCI needs to have the git config username set or it throws 'Please tell me who you are' errors. This adds a dummy user to the git config. Part of #28
1 parent c125539 commit 0ba81a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ node_js:
1010
- '0.12'
1111
- '0.10'
1212
before_install:
13+
# Prevent "tell me who you are" errors
14+
- git config --global user.name "TravisCI"
1315
- npm i -g npm@^2.0.0
1416
before_script:
1517
- npm prune

0 commit comments

Comments
 (0)