We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb65ae3 commit 5d8553aCopy full SHA for 5d8553a
CHANGELOG.md
@@ -19,6 +19,7 @@ Fixed:
19
* python: use PDM and declare dependencies correctly.
20
* build: use generated IL to calculate digest, not what's on disk.
21
* build: synthesis depends on the yosys script too, not just IL.
22
+* build: fix path used with cached synthesis when programming.
23
24
## 0.1.1
25
src/niar/build.py
@@ -85,7 +85,7 @@ def execute_build():
85
cr.run()
86
if products is None:
87
# XXX: good lord.
88
- products = LocalBuildProducts(np.path.build())
+ products = LocalBuildProducts(np.path.build(subdir))
89
90
if args.program:
91
with logtime(logging.DEBUG, "programming"):
0 commit comments