We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d320c84 commit 3d05ca8Copy full SHA for 3d05ca8
1 file changed
scripts/build.py
@@ -718,8 +718,10 @@ def main(args):
718
# Get repository files
719
all_files = get_git_files(args.version)
720
# Add the LOOT API binaries to all_files
721
- loot_dll = os.path.join(u"Mopy", u"loot_api.dll")
+ loot_api_dll = os.path.join(u"Mopy", u"loot_api.dll")
722
+ loot_dll = os.path.join(u"Mopy", u"loot.dll")
723
loot_pyd = os.path.join(u"Mopy", u"loot_api.pyd")
724
+ all_files.append(loot_api_dll)
725
all_files.append(loot_dll)
726
all_files.append(loot_pyd)
727
version_info = get_version_info(args.version)
0 commit comments