Merge branch 'remove_output' into 'master'

Remove unused output folder

See merge request bslathi19/build_fpga!4
This commit is contained in:
Byron Lathi
2025-02-09 04:21:36 +00:00
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")