Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/build/pkgs/git/spkg-check
8815 views
#!/usr/bin/env bash

cd src

echo "Testing git..."
$MAKE test 
if [ $? -ne 0 ]; then
    echo >&2 "Error running git's test suite."
    exit 1
fi