#!/bin/sh
# Note: I'm open to any suggestions as to how distribute a Ruby app, I find
# this wrapper script a little ridiculous.
if test -x eat.rb; then
	./eat.rb || exit 1
elif test -x "/usr/local/share/eatmonkey"/eat.rb; then
	cd "/usr/local/share/eatmonkey" && ./eat.rb || exit 1
fi
exit 0
