Commit d451c58f authored by Andrew Murray's avatar Andrew Murray
Browse files

Use brew in ensure_xz on macOS

parent 56fc3949
......@@ -237,7 +237,11 @@ function build_xz {
function ensure_xz {
if [[ ! $(type -P "xz") ]]; then
build_xz
if [ -n "$IS_MACOS" ]; then
brew install xz
else
build_xz
fi
fi
}
......
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