mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 19:22:24 +00:00
build: fix path used with cached synthesis when programming.
This commit is contained in:
parent
bb65ae312c
commit
5d8553a241
|
@ -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
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ def main(np: Project, args):
|
|||
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"):
|
||||
|
|
Loading…
Reference in a new issue