diff options
author | Florian Walch <florian@fwalch.com> | 2014-12-13 14:41:30 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-12-14 21:42:36 +0100 |
commit | e11a94e5b67e517a18504d07db85092a702fe699 (patch) | |
tree | 250c87f3b6c0e75ebba9bc29e76874c6eedaef93 | |
parent | 4982a2d25777c8abf8854c56aa0df36ac717540a (diff) | |
download | rneovim-e11a94e5b67e517a18504d07db85092a702fe699.tar.gz rneovim-e11a94e5b67e517a18504d07db85092a702fe699.tar.bz2 rneovim-e11a94e5b67e517a18504d07db85092a702fe699.zip |
Travis: Remove setting core file size.
Doesn't work on Travis:
> bash: line 0: ulimit: core file size: cannot modify limit: Operation not permitted
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 37d1dd978c..0787e60890 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,4 +59,4 @@ script: # This will pass the environment variables down to a bash process which runs # as $USER, while retaining the environment variables defined and belonging # to secondary groups given above in usermod. - - sudo -E su $USER -c "ulimit -c 102400; sh -e \"$CI_SCRIPTS/$CI_TARGET.sh\"" + - sudo -E su $USER -c "sh -e \"$CI_SCRIPTS/$CI_TARGET.sh\"" |