Skip to content

Commit

Permalink
openroad: Fix mock area bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hovind authored and oharboe committed Sep 16, 2024
1 parent 7526189 commit 4bfc37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openroad.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _run_openroad_impl(ctx, mock_area = False):
],
command = ctx.executable._openroad.path + " $@",
env = all_arguments | odb_environment(ctx) | _run_env(ctx, config) | {
"RESULTS_DIR": ctx.genfiles_dir.path + "/" + _artifact_dir(ctx, "results"),
"RESULTS_DIR": _work_home(ctx) + "/" + _artifact_dir(ctx, "results"),
"OUTPUTS": ":".join([out.path for out in outs]),
} | ctx.attr.extra_envs,
inputs = depset(
Expand Down

0 comments on commit 4bfc37e

Please sign in to comment.