fix: resolve relative HyperFrames output paths

This commit is contained in:
ShiroKSH
2026-07-13 21:33:11 +03:00
parent f8d94632ea
commit 24617af460
2 changed files with 37 additions and 1 deletions

View File

@@ -654,7 +654,9 @@ class HyperFramesCompose(BaseTool):
)
workspace = self._require_workspace(inputs)
output_path = Path(inputs.get("output_path") or (workspace / "renders" / "final.mp4"))
output_path = Path(
inputs.get("output_path") or (workspace / "renders" / "final.mp4")
).expanduser().resolve()
output_path.parent.mkdir(parents=True, exist_ok=True)
steps: dict[str, Any] = {}