mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +00:00
Set git line-ending config globally for Travis builds.
It looks like Git 1.8 does not respect superproject settings when checking out submodules.
This commit is contained in:
parent
11da8f8faf
commit
48015c7745
1 changed files with 4 additions and 4 deletions
|
@ -84,8 +84,8 @@ before_script:
|
|||
- |
|
||||
if [[ "${RELEASE_BUILD}" == "LF" ]]; then
|
||||
cd "${TRAVIS_BUILD_DIR}"
|
||||
git config core.eol lf
|
||||
git config core.autocrlf input
|
||||
git config --global core.eol lf
|
||||
git config --global core.autocrlf input
|
||||
git rm --cache -r .
|
||||
git reset --quiet --hard HEAD
|
||||
git submodule update --init --recursive
|
||||
|
@ -93,8 +93,8 @@ before_script:
|
|||
- |
|
||||
if [[ "${RELEASE_BUILD}" == "CRLF" ]]; then
|
||||
cd "${TRAVIS_BUILD_DIR}"
|
||||
git config core.eol crlf
|
||||
git config core.autocrlf true
|
||||
git config --global core.eol crlf
|
||||
git config --global core.autocrlf true
|
||||
git rm --cache -r .
|
||||
git reset --quiet --hard HEAD
|
||||
git submodule update --init --recursive
|
||||
|
|
Loading…
Add table
Reference in a new issue