From 64dc9940e0c68460144e3142736ec61be66bd5a9 Mon Sep 17 00:00:00 2001 From: Rahul Bhagwat Date: Wed, 12 Aug 2026 00:54:56 +0530 Subject: [PATCH] fix incorrect path to runs after flow completion --- chipfoundry_cli/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chipfoundry_cli/main.py b/chipfoundry_cli/main.py index cae9f97..f90f1b0 100644 --- a/chipfoundry_cli/main.py +++ b/chipfoundry_cli/main.py @@ -4429,13 +4429,13 @@ def get_valid_from_steps(librelane_python, macro_config, working_dir): if returncode == 0: console.print(f"\n[green]✓[/green] [bold green]Successfully hardened {macro}![/bold green]") - console.print(f"[dim]Results saved to: {project_root_path}/runs/{macro}/{tag}/[/dim]") + console.print(f"[dim]Results saved to: {macro_dir}/runs/{tag}/[/dim]") elif returncode == -2 or returncode == 130: # SIGINT console.print("\n[yellow]⚠[/yellow] Hardening interrupted by user") sys.exit(130) else: console.print(f"\n[red]✗[/red] [bold red]Hardening failed with exit code {returncode}[/bold red]") - console.print(f"[yellow]Check logs in: {project_root_path}/runs/{macro}/{tag}/[/yellow]") + console.print(f"[yellow]Check logs in: {macro_dir}/runs/{tag}/[/yellow]") sys.exit(returncode) except KeyboardInterrupt: