what is your platform? we have this clause ```if...
# development
h
what is your platform? we have this clause
Copy code
if is_macos_arm; then
  echo "* Running \`./cargo clippy\`"
  ./cargo clippy || exit 1
else
  echo "* Running \`./cargo clippy --all\`"
  ./cargo clippy --all || exit 1
fi