Skip to content

Commit

Permalink
chore: avoid duplication of dlls and assets in engines folder
Browse files Browse the repository at this point in the history
this is possible due to d4d84ae
  • Loading branch information
Andrea Ghensi committed Sep 12, 2024
1 parent 6f5b692 commit 0ccd821
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions dev/_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,3 @@ def build_binaries(_: Dict[str, str]):
labs.build_runtime(_)
telem.build_telem(_)
autoc.build_autocmp(_)

file_list = os.listdir(configs.BINPATH_NETCORE)
for file in file_list:
if file.endswith(".dll")\
or file.endswith(".png")\
or file.endswith(".json"):
print(op.join(configs.BINPATH_NETCORE, file))
print(op.join(configs.ENGINES2PATH_NETCORE, file))
shutil.copyfile(op.join(configs.BINPATH_NETCORE, file),
op.join(configs.ENGINES2PATH_NETCORE, file))

0 comments on commit 0ccd821

Please sign in to comment.