build/gowin: Fix bitstream copy to gateware directory.

This commit is contained in:
William D. Jones 2022-06-15 21:45:19 -04:00
parent 49d0463394
commit 3e10576fcd
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ class GowinToolchain:
# Copy Bitstream to from impl to gateware directory.
copyfile(
os.path.join(build_dir, "impl", "pnr", "project.fs"),
os.path.join(build_dir, build_name + ".fs")
os.path.join("impl", "pnr", "project.fs"),
os.path.join(build_name + ".fs")
)
os.chdir(cwd)