From f524b6ff043cd96d671cf8f46df0371fc01d77ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=81=8D=E5=85=AE=E6=83=9A=E5=85=AE?= <1173718158@qq.com> Date: Fri, 3 Jan 2025 13:25:10 +0800 Subject: [PATCH] . --- .github/scripts/build_lunatranslator.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/scripts/build_lunatranslator.py b/.github/scripts/build_lunatranslator.py index 9e5f0216..d05f4748 100644 --- a/.github/scripts/build_lunatranslator.py +++ b/.github/scripts/build_lunatranslator.py @@ -334,7 +334,7 @@ if __name__ == "__main__": os.makedirs("../../py/files/plugins/DLL32", exist_ok=True) shutil.copy("../builds/_x86/shareddllproxy32.exe", "../../py/files/plugins") shutil.copy( - "../builds/_x86/winsharedutils32.dll", "../../py/files/plugins/DLL32" + "../builds/_x86/winsharedutils.dll", "../../py/files/plugins/DLL32" ) os.chdir(rootDir) os.system(f"python {os.path.join(rootthisfiledir,'collectall_xp.py')}") @@ -372,20 +372,20 @@ if __name__ == "__main__": os.makedirs("../../py/files/plugins/DLL32", exist_ok=True) shutil.copy("../builds/_x86/shareddllproxy32.exe", "../../py/files/plugins") - shutil.copy("../builds/_x86/winrtutils32.dll", "../../py/files/plugins/DLL32") + shutil.copy("../builds/_x86/winrtutils.dll", "../../py/files/plugins/DLL32") shutil.copy( - "../builds/_x86/winsharedutils32.dll", "../../py/files/plugins/DLL32" + "../builds/_x86/winsharedutils.dll", "../../py/files/plugins/DLL32" ) shutil.copy("../builds/_x86/wcocr.dll", "../../py/files/plugins/DLL32") - shutil.copy("../builds/_x86/LunaOCR32.dll", "../../py/files/plugins/DLL32") + shutil.copy("../builds/_x86/LunaOCR.dll", "../../py/files/plugins/DLL32") os.makedirs("../../py/files/plugins/DLL64", exist_ok=True) shutil.copy("../builds/_x64/shareddllproxy64.exe", "../../py/files/plugins") - shutil.copy("../builds/_x64/winrtutils64.dll", "../../py/files/plugins/DLL64") + shutil.copy("../builds/_x64/winrtutils.dll", "../../py/files/plugins/DLL64") shutil.copy( - "../builds/_x64/winsharedutils64.dll", "../../py/files/plugins/DLL64" + "../builds/_x64/winsharedutils.dll", "../../py/files/plugins/DLL64" ) shutil.copy("../builds/_x64/wcocr.dll", "../../py/files/plugins/DLL64") - shutil.copy("../builds/_x64/LunaOCR64.dll", "../../py/files/plugins/DLL64") + shutil.copy("../builds/_x64/LunaOCR.dll", "../../py/files/plugins/DLL64") if arch == "x86": os.chdir(rootDir)