#!/bin/bash

if [ ! -d SimpleAnnotationServer--gitfork ] ; then

    tar xvzf SimpleAnnotationServer--gitfork.tar.gz
else
    echo ""
    echo "Already untarred SimpleAnnotationServer--gitfork.tar.gz"
fi

if [ $? = 0 ] ; then
    echo ""
    echo "Now run: "
    echo "    ./COMPILE.sh"
    echo ""
fi


