#!/usr/bin/env bash

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

# Helper functions
success() {
    if [ $? -ne 0 ]; then
        echo "Error: '$1'"
        exit 1
    fi
}

CUR=`pwd`

cd src

# Install new version
echo "Installing nose..."
$PIP_INSTALL .
success 'Error installing nose'
echo
