#!/usr/bin/env bash

PKMKSHELLUTILITY=$PACKAGE_PATH/Contents/Resources/pkmkshellutility

RESULT=`$PKMKSHELLUTILITY --file $1'/Developer/Library/Xcode/Project Templates/Application'`
if [ $RESULT != true ]; then
	exit 32
fi


exit 0