#!/bin/sh

TARGET="$SAGE_DATA"/ellcurves

if [ ! -d "$TARGET" ]; then
    mkdir "$TARGET"
fi

cp * "$TARGET"/

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