#!/bin/bash

# InstallationCheck script for the MacTeX installer

# is our system pre 10.2.0?
if [[ `/usr/bin/uname -r | /usr/bin/cut -f 1 -d .` -lt 7 ]]; then
	exit 114 	# display string "18" from InstallationCheck.strings
fi

# was the BSD package installed?
if [[ ! -x /usr/bin/grep ]]; then
	exit 115  # display string "19" from InstallationCheck.strings
fi

exit 0
