Skip to content

Commit

Permalink
Fix a bug in the pin placement script feature of place_and_route. (#342)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Inouye <[email protected]>
  • Loading branch information
mikesinouye authored Aug 7, 2024
1 parent 14d8a36 commit 8d4a12c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions place_and_route/private/place_pins.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def place_pins(ctx, open_road_info):
]
tapcell_command = "source {}".format(open_road_configuration.tapcell_tcl.path)

if ctx.file.pin_placement_script:
inputs.append(ctx.file.pin_placement_script)
if ctx.file.pin_placement_script:
inputs.append(ctx.file.pin_placement_script)

open_road_commands = [
"source {}".format(ctx.file.pin_placement_script.path) if ctx.file.pin_placement_script else "",
Expand Down

0 comments on commit 8d4a12c

Please sign in to comment.