mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #1331 from cr1901/gowin-win
Gowin: Fix `copyfile` paths
This commit is contained in:
commit
b8ee713dba
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ class GowinToolchain:
|
||||||
|
|
||||||
# Copy Bitstream to from impl to gateware directory.
|
# Copy Bitstream to from impl to gateware directory.
|
||||||
copyfile(
|
copyfile(
|
||||||
os.path.join(build_dir, "impl", "pnr", "project.fs"),
|
os.path.join("impl", "pnr", "project.fs"),
|
||||||
os.path.join(build_dir, build_name + ".fs")
|
os.path.join(build_name + ".fs")
|
||||||
)
|
)
|
||||||
|
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
|
|
Loading…
Reference in a new issue