#!/bin/sh

OS_VERSION=$(sw_vers -productVersion)

echo "$OS_VERSION"

if [ $OS_VERSION \> 12.0 ] ; then
  exit 0
else
  exit 209
  # missing system requirements
fi
