projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a08901
)
build.run: fix BuildProducts.extract to work with subdirectories.
author
whitequark
<whitequark@whitequark.org>
Sun, 12 Apr 2020 04:56:15 +0000
(
04:56
+0000)
committer
whitequark
<whitequark@whitequark.org>
Sun, 12 Apr 2020 04:56:15 +0000
(
04:56
+0000)
Fixes #353.
nmigen/build/run.py
patch
|
blob
|
history
diff --git
a/nmigen/build/run.py
b/nmigen/build/run.py
index a32f38e76b8f67334ed5a3e0837396e6bf3c5b83..93aa4df06dee4e9b04e07867973618078ef28115 100644
(file)
--- a/
nmigen/build/run.py
+++ b/
nmigen/build/run.py
@@
-136,8
+136,9
@@
class BuildProducts(metaclass=ABCMeta):
# On Windows, a named temporary file (as created by Python) is not accessible to
# others if it's still open within the Python process, so we close it and delete
# it manually.
- file = tempfile.NamedTemporaryFile(prefix="nmigen_", suffix="_" + filename,
- delete=False)
+ file = tempfile.NamedTemporaryFile(
+ prefix="nmigen_", suffix="_" + os.path.basename(filename),
+ delete=False)
files.append(file)
file.write(self.get(filename))
file.close()