Updated some stuff trying to get package fetching working

This commit is contained in:
2026-05-18 15:11:29 +02:00
parent df42c118bf
commit 5cb41ac8b5
3 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ from pathlib import Path
from config import load_config
CACHE_DIR = os.path.expanduser(load_config()["cache_dir"])
CACHE_DIR = Path(os.path.expanduser(load_config()["cache_dir"]))
def fetch_package(meta: dict) -> tuple[Path, Path]:
CACHE_DIR.mkdir(parents=True, exist_ok=True)