#!/bin/sh

path_to_pyrogenesis=$(which pyrogenesis)
if [ -x "$path_to_pyrogenesis" ] ; then
	"$path_to_pyrogenesis" "$@"
else
	echo "Error: pyrogenesis cannot be found in $PATH"
	exit 1
fi
