Files
suitesparse-downloader/lib/config.py
2021-12-01 08:28:45 -08:00

10 lines
163 B
Python

import os
import sys
from pathlib import Path
try:
DIR = Path(os.environ["SS_DIR"])
except KeyError as e:
print("ERROR: $SS_DIR not set")
sys.exit(1)