Skip to content

Commit

Permalink
Fix travis brew update condition
Browse files Browse the repository at this point in the history
  • Loading branch information
nmcdonnell-kx committed Feb 10, 2021
1 parent 82507e1 commit edec535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ before_install:

# Run instructions to install or build Arrow libray
- if [[ $BUILD == "True" ]]; then
echo TRAVIS_TAG=$TRAVIS_TAG;
chmod +x travis_setup.sh;
./travis_setup.sh;
export LIB="cmake/$FILE_ROOT/lib";
Expand Down
2 changes: 1 addition & 1 deletion travis_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ APT_LINE
sudo apt install -y -V libarrow-dev
sudo apt install -y -V libparquet-dev
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
if [[ ! -z "$TRAVIS_TAG" ]]; then
if [[ -z "$TRAVIS_TAG" ]]; then
export HOMEBREW_NO_AUTO_UPDATE=1;
fi
brew install apache-arrow
Expand Down

0 comments on commit edec535

Please sign in to comment.