Commit ca5a1450 authored by mattip's avatar mattip
Browse files

typo

parent 2a4de772
......@@ -13,7 +13,7 @@ set -e
MULTIBUILD_DIR=$(dirname "${BASH_SOURCE[0]}")
if [ $(uname) == "Darwin" ]; then IS_OSX=1; fi
if [ "$(PLAT)" == "aarch64" ]; then IS_AARCH64=1; fi
if [ "$PLAT" == "aarch64" ]; then IS_AARCH64=1; fi
# Work round bug in travis xcode image described at
# https://github.com/direnv/direnv/issues/210
......
......@@ -94,8 +94,8 @@ function build_openblas {
if [ -n "$IS_OSX" ]; then
brew install openblas
brew link --force openblas
elif [-n "$IS_AARCH64"]; then
sudo apt install libopenblas-dev
elif [ -n "$IS_AARCH64" ]; then
apt install libopenblas-dev
return;
else
mkdir -p $ARCHIVE_SDIR
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment