#!/usr/bin/env bash

if [ "$SAGE_LOCAL" = "" ]; then
   echo "SAGE_LOCAL undefined ... exiting";
   echo "Maybe run 'sage -sh'?"
   exit 1
fi

cd src

$PIP_INSTALL .

if [ $? -ne 0 ]; then
    echo "Error installing pandocfilters ... exiting"
    exit 1
fi

