Skip to content

Commit

Permalink
Skip ONNX script on macOS arm64 (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Dec 1, 2020
1 parent 5a2670c commit a8dcf9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/onnx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ sync() {

install() {
bold "onnx install"
if [ "$(uname -ms)" = "Darwin arm64" ]; then
echo "- arm64 [skip]"
return
fi
case "${OSTYPE}" in
linux*)
[ -x "$(command -v cmake)" ] || sudo apt install -y cmake
Expand Down

0 comments on commit a8dcf9f

Please sign in to comment.