From d83fc3afd5e37d969d5b634a7b9b12ebec4428ee Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 12 May 2020 22:06:34 +0200 Subject: [PATCH] Travis: Install a find(1) better than that of macOS --- .travis.sh | 1 + Brewfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.sh b/.travis.sh index 44fcf604..bcf6c089 100755 --- a/.travis.sh +++ b/.travis.sh @@ -34,6 +34,7 @@ if [[ ${TRAVIS_OS_NAME} = osx ]]; then latest_brew_python3_bin="$(ls -1d /usr/local/Cellar/python/3.*/bin | sort -n | tail -n1)" export PATH="${latest_brew_python3_bin}${PATH:+:}${PATH}" export PATH="/usr/local/opt/coreutils/libexec/gnubin${PATH:+:}${PATH}" + export PATH="/usr/local/opt/findutils/libexec/gnubin${PATH:+:}${PATH}" elif [[ ${TRAVIS_OS_NAME} = linux ]]; then export PATH="/usr/lib/llvm-9/bin:${PATH}" fi diff --git a/Brewfile b/Brewfile index 98a87fd7..c2edcc1f 100644 --- a/Brewfile +++ b/Brewfile @@ -5,6 +5,7 @@ brew "coreutils" brew "cppcheck" brew "docbook2x" brew "dos2unix" +brew "findutils" brew "gcc" brew "gettext" brew "ghostscript"