This commit is contained in:
dr. M.S. (Matthijs) Berends 2019-11-06 16:22:44 +01:00
parent e1d6736ca5
commit 1de1cc58f2
2 changed files with 4 additions and 4 deletions

View File

@ -46,10 +46,10 @@ environment:
- R_VERSION: devel
build_script:
- travis-tool.sh install_deps
- travis_tool.sh install_deps
test_script:
- travis-tool.sh run_tests
- travis_tool.sh run_tests
on_failure:
- 7z a failure.zip *.Rcheck\*

View File

@ -55,8 +55,8 @@ Bootstrap() {
exit 1
fi
if ! (test -e .Rbuildignore && grep -q 'travis-tool' .Rbuildignore); then
echo '^travis-tool\.sh$' >>.Rbuildignore
if ! (test -e .Rbuildignore && grep -q 'travis_tool' .Rbuildignore); then
echo '^travis_tool\.sh$' >>.Rbuildignore
fi
}