1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 07:20:02 +03:00

[2127] Move Manifests to Resources

Since these are only used by the builder, we can simply update the location of them. I'm not convinced they're all still in use but not convinced enough to remove them.
This commit is contained in:
David Sangrey 2024-01-04 13:47:24 -05:00
parent a8b18e8ca4
commit 6b137355b0
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
6 changed files with 3 additions and 2 deletions

View File

@ -164,15 +164,16 @@ def build() -> None:
"script": "EDMarketConnector.py",
"icon_resources": [(0, f"{appname}.ico")],
"other_resources": [
(24, 1, pathlib.Path(f"{appname}.manifest").read_text(encoding="UTF8"))
(24, 1, pathlib.Path(f"resources/{appname}.manifest").read_text(encoding="UTF8"))
],
}
console_config: dict = {
"dest_base": appcmdname,
"script": "EDMC.py",
"icon_resources": [(0, f"{appname}.ico")],
"other_resources": [
(24, 1, pathlib.Path(f"{appcmdname}.manifest").read_text(encoding="UTF8"))
(24, 1, pathlib.Path(f"resources/{appcmdname}.manifest").read_text(encoding="UTF8"))
],
}