#!/bin/sh

case "x--debug" in ("x$1" | "x$2")
	MONO_OPTIONS="--debug"
	echo "*** Running F-Spot in Debug Mode ***"
esac

mono $MONO_OPTIONS /usr/lib/f-spot/f-spot.exe "$@"