Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
HIllya51 committed Nov 30, 2024
1 parent 074cdc9 commit ef306ea
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/scripts/build_lunatranslator.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,17 @@ def downloadLocaleEmulator():
)
p = subprocess.Popen("LocaleEmulator/LEInstaller.exe")
while 1:
if os.path.exists("LocaleEmulator/LECommonLibrary.dll") and os.path.exists(
"LocaleEmulator/LEConfig.xml"
):
if os.path.exists("LocaleEmulator/LECommonLibrary.dll"):
break
time.sleep(0.1)
p.kill()
p = subprocess.Popen("LocaleEmulator/LEProc.exe")
while 1:
if os.path.exists("LocaleEmulator/LEConfig.xml"):
break
time.sleep(0.1)
p.kill()

for f in [
"LoaderDll.dll",
"LocaleEmulator.dll",
Expand Down

0 comments on commit ef306ea

Please sign in to comment.