summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-04-22 09:05:24 +0200
committerSebastian Thiel <byronimo@gmail.com>2015-04-22 09:06:04 +0200
commit96928d2eb3d98c475fd0737240c06bf8e5f96ad6 (patch)
treefedc41d709b2d332e372c6906343506ff487f50a /.travis.yml
parentb9a2ea80aa9970bbd625da4c986d29a36c405629 (diff)
downloadgitpython-96928d2eb3d98c475fd0737240c06bf8e5f96ad6.tar.gz
fix(travis): can't overrwrite travis .gitconfig
As it seems to contain custom inforamtion that we want to keep. Now we are appending to it ...
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 389780c7..7aaf9f94 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,7 +27,7 @@ install:
- git config --global user.name "Travis Runner"
# If we rewrite the user's config by accident, we will mess it up
# and cause subsequent tests to fail
- - cp git/test/fixtures/.gitconfig ~/
+ - cat git/test/fixtures/.gitconfig >> ~/.gitconfig
script:
# Make sure we limit open handles to see if we are leaking them
- ulimit -n 96