#!/bin/bash

# this script will only be run on OS versions less than 10.3.0
# so it will always return 10 indicating the installation should not 
# continue. This is interpreted by the installer to be a silent failure.
echo "" >> /tmp/lightscribeInstallationCheck.log
echo "This is a pre 10.3 system, not supported by lightscribe" >> /tmp/lightscribeInstallationCheck.log
echo "" >> /tmp/lightscribeInstallationCheck.log

exit 10


