mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Fix run_eval.py: resolve output-dir to absolute path
When --output-dir is relative and fabro runs from /tmp, generated workflow.toml paths were unresolvable. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e246b7f4bb
commit
0ef79bfd3e
1 changed files with 1 additions and 0 deletions
|
|
@ -314,6 +314,7 @@ def main():
|
|||
)
|
||||
args = parser.parse_args()
|
||||
|
||||
args.output_dir = args.output_dir.resolve()
|
||||
args.output_dir.mkdir(parents=True, exist_ok=True)
|
||||
setup_logging(args.output_dir)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue