Skip to content

Commit

Permalink
build: fix path used with cached synthesis when programming.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jul 4, 2024
1 parent bb65ae3 commit 5d8553a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Fixed:
* python: use PDM and declare dependencies correctly.
* build: use generated IL to calculate digest, not what's on disk.
* build: synthesis depends on the yosys script too, not just IL.
* build: fix path used with cached synthesis when programming.

## 0.1.1

Expand Down
2 changes: 1 addition & 1 deletion src/niar/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def execute_build():
cr.run()
if products is None:
# XXX: good lord.
products = LocalBuildProducts(np.path.build())
products = LocalBuildProducts(np.path.build(subdir))

if args.program:
with logtime(logging.DEBUG, "programming"):
Expand Down

0 comments on commit 5d8553a

Please sign in to comment.