#!/usr/bin/env bash

PKMKSHELLUTILITY=$1/Contents/Resources/pkmkshellutility

RESULT=`$PKMKSHELLUTILITY --sysctl hw.cputype`
if [ $RESULT = '7' ]; then
	exit 97
fi

RESULT=`$PKMKSHELLUTILITY --sysctl hw.cputype`
if [ $RESULT = '7 | 0x01000000' ]; then
	exit 97
fi


exit 0