#!/bin/sh

# Zope Hotfix OS X installer - preflight script
# Author: Kamal Gill (kamalgill at mac.com)

# Abort if no instance found at default location for 2.5 OS X installers
if [ ! -e /opt/Plone-2.5/Instance ]
then
	exit 1
fi

exit 0
