home *** CD-ROM | disk | FTP | other *** search
/ ftp.sustworks.com 2018 / ftp.sustworks.com.zip / ftp.sustworks.com / USBAx8817x_101.dmg / src / Extras / InstallationCheck
Text File  |  2005-08-26  |  340b  |  12 lines

  1. #!/bin/bash
  2. version=$(/usr/bin/sw_vers -productVersion)
  3. subversion=${version:0:4}
  4. echo "Mac OS X $subversion detected."
  5. if [ $subversion != "10.3" ]
  6. then
  7.     echo "WARNING: this driver is not compatible with the version of Mac OS X detected."
  8.     echo "         The driver is designed to work on Panther (Mac OS X 10.3) only."
  9.     exit 33
  10. fi
  11. exit 0
  12.