From 0ccd8213bdae561a07fcca35c6b53f0f294d0f48 Mon Sep 17 00:00:00 2001 From: Andrea Ghensi Date: Fri, 13 Sep 2024 00:06:31 +0200 Subject: [PATCH] chore: avoid duplication of dlls and assets in engines folder this is possible due to d4d84ae9 --- dev/_build.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dev/_build.py b/dev/_build.py index d47a85091..383000b06 100644 --- a/dev/_build.py +++ b/dev/_build.py @@ -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))