Skip to content

Commit 5d8553a

Browse files
committed
build: fix path used with cached synthesis when programming.
1 parent bb65ae3 commit 5d8553a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Fixed:
1919
* python: use PDM and declare dependencies correctly.
2020
* build: use generated IL to calculate digest, not what's on disk.
2121
* build: synthesis depends on the yosys script too, not just IL.
22+
* build: fix path used with cached synthesis when programming.
2223

2324
## 0.1.1
2425

src/niar/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def execute_build():
8585
cr.run()
8686
if products is None:
8787
# XXX: good lord.
88-
products = LocalBuildProducts(np.path.build())
88+
products = LocalBuildProducts(np.path.build(subdir))
8989

9090
if args.program:
9191
with logtime(logging.DEBUG, "programming"):

0 commit comments

Comments
 (0)