Skip to content

Commit

Permalink
Set git config in script/cibuild
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Apr 8, 2015
1 parent 596d13d commit 243766a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# http://docs.travis-ci.com/user/languages/go/
language: go
script: script/test
script: script/cibuild
sudo: required
notifications:
email: false
4 changes: 4 additions & 0 deletions script/cibuild
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#!/bin/sh

git config user.name || git config --global user.name "Git LFS Tests"
git config user.email || git config --global user.email "[email protected]"

script/test
3 changes: 0 additions & 3 deletions script/test
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
script/fmt
script/bootstrap

git config user.name || git config --global user.name "Git LFS Tests"
git config user.email || git config --global user.email "[email protected]"

export LOCALSRCDIR=`pwd`/.vendor/src/github.com/github/git-lfs
mkdir -p `dirname $LOCALSRCDIR`
rm -f $LOCALSRCDIR
Expand Down

0 comments on commit 243766a

Please sign in to comment.