diff options
author | teor <teor@torproject.org> | 2018-08-10 16:24:31 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-10 16:24:31 +1000 |
commit | e78f9c5dfb55e71fa79c152d13a1ff72fd907040 (patch) | |
tree | 198bf1436c5661c8bf296ded3f1c3d231febd801 /.travis.yml | |
parent | f4f2e43f5dfa6da163ec89ab67baa4f2f13b3197 (diff) | |
download | tor-e78f9c5dfb55e71fa79c152d13a1ff72fd907040.tar.gz tor-e78f9c5dfb55e71fa79c152d13a1ff72fd907040.zip |
Travis: add a missing macOS asciidoc dependency
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 7583eb7490..eed1371818 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,6 +124,7 @@ install: - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi ## If we're on OSX, and using asciidoc, install asciidoc - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install asciidoc; fi + - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install xmlto; fi ## ## Finally, list installed package versions - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi |