Remove unused output folder

This commit is contained in:
Byron Lathi
2025-02-08 20:20:44 -08:00
parent 48113c47d8
commit aaf481b583
2 changed files with 1 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ name = "build-fpga" # REQUIRED, is the only field that cannot be marked as dyna
# https://packaging.python.org/guides/single-sourcing-package-version/
# dynamic = ["version"]
version = "0.4.0" # REQUIRED, although can be dynamic
version = "0.4.1" # REQUIRED, although can be dynamic
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:

View File

@@ -84,6 +84,5 @@ def create_project(cfg, filename):
def build_project(cfg):
name = f"{cfg['prj_info']['name']}.xml"
create_project(cfg, name)
os.mkdir("output")
os.system(f"efx_run --prj {name} --output_dir outflow --work_dir work")