#!/bin/sh

gct 2>&1 | grep "GCT" > /dev/null
if [ 0 != $? ]
then
  echo "FAILURE:  GCT is either not installed or not in your \$PATH."
  exit 1
fi

exit 0
