Fxing the cache path

This commit is contained in:
2026-05-12 08:07:12 +02:00
parent 409d7790c0
commit b4c48d81b0
4 changed files with 11 additions and 31 deletions
-9
View File
@@ -586,14 +586,6 @@ def build_render_plan(
elif (project_path.parent / "shared_assets").exists():
shared_assets_dir = project_path.parent / "shared_assets"
# Resolve process_cache per-project directory
process_cache_dir = None
if config.process_cache:
_pc = Path(config.process_cache)
if not _pc.is_absolute():
_pc = (project_path / _pc).resolve()
process_cache_dir = _pc / project_path.name
narration_video = videos[narration_video_id]
cutout = config.cutouts[narration_video.cutout]
@@ -808,7 +800,6 @@ def build_render_plan(
outro_events=outro_events,
narration_end_time=narration_end_time,
cached_files=cached_files,
process_cache_dir=process_cache_dir,
)
return plan, marker_timings