Skip to content

Commit 3d05ca8

Browse files
committed
Because python needs loot.dll and exe needs loot_api.dll
1 parent d320c84 commit 3d05ca8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,8 +718,10 @@ def main(args):
718718
# Get repository files
719719
all_files = get_git_files(args.version)
720720
# Add the LOOT API binaries to all_files
721-
loot_dll = os.path.join(u"Mopy", u"loot_api.dll")
721+
loot_api_dll = os.path.join(u"Mopy", u"loot_api.dll")
722+
loot_dll = os.path.join(u"Mopy", u"loot.dll")
722723
loot_pyd = os.path.join(u"Mopy", u"loot_api.pyd")
724+
all_files.append(loot_api_dll)
723725
all_files.append(loot_dll)
724726
all_files.append(loot_pyd)
725727
version_info = get_version_info(args.version)

0 commit comments

Comments
 (0)