#!/bin/sh

if [ "$PETSC_DIR" = "" ]; then
	echo "You should declare variable PETSC_DIR!"
	exit 1
fi

$PETSC_DIR/bin/OpenFVM $@
